Permalink
Browse files
Looks like the sequential mostly works. It just doesn't stop running …
…for some reason
- Loading branch information
Showing
with
3,388 additions
and 1 deletion.
- +20 −0 .ftpconfig
- +0 −1 README.md
- +3,055 −0 sequential/data.txt
- +18 −0 sequential/diagnostics.r
- 0 sequential/empty_file
- +282 −0 sequential/gibbs_metropolis.cpp
- +10 −0 sequential/smallData.txt
- +3 −0 sequential/uploadall.sh
@@ -0,0 +1,20 @@ | |||
{ | |||
"protocol": "sftp", | |||
"host": "login.storrs.hpc.uconn.edu", | |||
"port": 22, | |||
"user": "rjm11010", | |||
"pass": "", | |||
"promptForPass": false, | |||
"remote": "/home/rjm11010/hpcproj/parallel_mcmc", | |||
"local": "", | |||
"agent": "", | |||
"privatekey": "/home/reynaldo/.ssh/uconn_hpc", | |||
"passphrase": "", | |||
"hosthash": "", | |||
"ignorehost": true, | |||
"connTimeout": 10000, | |||
"keepalive": 10000, | |||
"keyboardInteractive": false, | |||
"watch": [], | |||
"watchTimeout": 500 | |||
} |
@@ -1,5 +1,4 @@ | |||
Parallel MCMC On GPU | Parallel MCMC On GPU | ||
=========================== | =========================== | ||
|
|
||
|
|||
This project compares the performance of MCMC on a single threaded CPU, and a multicore, multithreaded GPU (using CUDA). | This project compares the performance of MCMC on a single threaded CPU, and a multicore, multithreaded GPU (using CUDA). |

Oops, something went wrong.