melsonGit / serial_cpp_vs_parallel_cuda

Code work for completion of MSc ICT. The original version of this project was submitted alongside a 15,000 word thesis paper and put into practice the theoretical CPU and GPGPU/GPU elements explored in the write-up. I continued to develop this project post-graduation.
0 stars 1 forks source link

Implement true random number generation using std::mt19937 #10

Closed melsonGit closed 2 years ago

melsonGit commented 2 years ago

numGen files currently use rand(), well known for not being effective in "genuine" randomness: See here (refer to notes section)).

With this, I want to implement true randomness (or as close as possible) using std::random_device: See here.

melsonGit commented 2 years ago

Commits 1c107de and 5d955fe resolves this issue.

Closing.