Skip to content

Commit

Permalink
We don't have range() on the device
Browse files Browse the repository at this point in the history
Signed-off-by: Joseph Schuchart <[email protected]>
  • Loading branch information
devreal committed Sep 18, 2024
1 parent eb6dc99 commit 6c14afa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/madness/mra-device/mrattg-device.cc
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ void test(std::size_t K) {
D.set_cube(-6.0,6.0);

srand48(5551212); // for reproducible results
for (int i = 0; i < range(10000); ++i) drand48(); // warmup generator
for (int i = 0; i < 10000; ++i) drand48(); // warmup generator

ttg::Edge<mra::Key<NDIM>, void> project_control;
ttg::Edge<mra::Key<NDIM>, mra::FunctionReconstructedNode<T, NDIM>> project_result, reconstruct_result;
Expand Down

0 comments on commit 6c14afa

Please sign in to comment.