1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-10 07:55:35 +00:00

coalesce loop. Need to rationalise this file

This commit is contained in:
Peter Boyle 2019-06-04 23:49:29 +01:00
parent b47f73c222
commit 8113845f9c

View File

@ -184,4 +184,6 @@ void LambdaApply2D(uint64_t Osites, uint64_t Isites, lambda Lambda)
#define cpu_loop( iterator, range, ... ) \
thread_loop( (auto iterator = range.begin();iterator<range.end();iterator++), { __VA_ARGS__ });
#define coalesce_loop( iterator, range, nsimd, ... ) cpu_loop(iterator,range,{__VA_ARGS__})
#endif