1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-08-01 20:27:07 +01:00

Make tests running past nvcc. Different NVCC versions proving tricky to keep happy. This is 9.2

This commit is contained in:
Peter Boyle
2019-01-02 12:05:30 +00:00
parent a4d9200293
commit e73b909a48
6 changed files with 25 additions and 21 deletions

View File

@@ -87,9 +87,9 @@ int main (int argc, char ** argv)
auto Uprime_v = Uprime.View();
auto U_v = U.View();
auto mom_v = mom.View();
parallel_for(auto i=mom_v.begin();i<mom_v.end();i++){ // exp(pmu dt) * Umu
thread_loop( (auto i=mom_v.begin();i<mom_v.end();i++),{ // exp(pmu dt) * Umu
Uprime_v[i](mu) = U_v[i](mu) + mom_v[i](mu)*U_v[i](mu)*dt ;
}
});
}
ComplexD Sprime = Action.S(Uprime);