From f3c89df948e8d3fd767ffc5937e2226a1713d81f Mon Sep 17 00:00:00 2001 From: Peter Boyle Date: Sat, 15 Jun 2019 08:00:37 +0100 Subject: [PATCH] Thread loop changes --- Grid/lattice/Lattice_rng.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Grid/lattice/Lattice_rng.h b/Grid/lattice/Lattice_rng.h index a9f8d6ee..c0d36c8e 100644 --- a/Grid/lattice/Lattice_rng.h +++ b/Grid/lattice/Lattice_rng.h @@ -369,7 +369,7 @@ public: int words = sizeof(scalar_object) / sizeof(scalar_type); auto l_v = l.View(); - thread_loop( (int ss=0;ss buf(Nsimd); for (int m = 0; m < multiplicity; m++) { // Draw from same generator multiplicity times @@ -419,7 +419,7 @@ public: //////////////////////////////////////////////// // Everybody loops over global volume. - thread_loop( (int gidx=0;gidx<_grid->_gsites;gidx++) , { + thread_for( gidx, _grid->_gsites, { // Where is it? int rank; int o_idx; @@ -461,7 +461,7 @@ public: seeders[t] = Reseed(master_engine); } - thread_loop( (int t=0;t newseeds; std::uniform_int_distribution uid;