Skip to content
This repository has been archived by the owner on Jun 27, 2022. It is now read-only.

Commit

Permalink
normal_distribution is in a new namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikolai Tasev committed Jun 6, 2017
1 parent 7c57e76 commit 1e57dee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Problem Sets/Problem Set 5/main.cu
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ int main(void)

thrust::minstd_rand rng;

thrust::random::experimental::normal_distribution<float> normalDist((float)mean, stddev);
thrust::random::normal_distribution<float> normalDist((float)mean, stddev);

// Generate the random values
for (size_t i = 0; i < numElems; ++i) {
Expand Down

0 comments on commit 1e57dee

Please sign in to comment.