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

Commit 1e57dee

Browse files
author
Nikolai Tasev
committed
normal_distribution is in a new namespace
1 parent 7c57e76 commit 1e57dee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Problem Sets/Problem Set 5/main.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ int main(void)
5252

5353
thrust::minstd_rand rng;
5454

55-
thrust::random::experimental::normal_distribution<float> normalDist((float)mean, stddev);
55+
thrust::random::normal_distribution<float> normalDist((float)mean, stddev);
5656

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

0 commit comments

Comments
 (0)