From afc462bd581467cd95c422ebaf4cf50043442fe9 Mon Sep 17 00:00:00 2001 From: Peter Boyle Date: Thu, 13 Dec 2018 10:53:22 +0000 Subject: [PATCH] Bracketing issue in macro --- Grid/qcd/utils/A2Autils.h | 3 +-- Grid/threads/Pragmas.h | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Grid/qcd/utils/A2Autils.h b/Grid/qcd/utils/A2Autils.h index c6ec8150..1d747ca1 100644 --- a/Grid/qcd/utils/A2Autils.h +++ b/Grid/qcd/utils/A2Autils.h @@ -576,8 +576,7 @@ void A2Autils::PionFieldWVmom(Eigen::Tensor &mat, int pd = grid->_processors[orthogdim]; int pc = grid->_processor_coor[orthogdim]; - thread_loop_collapse(2,(int lt=0;lt #else #define thread_loop( range , ... ) for range { __VA_ARGS__ ; }; #define thread_loop_collapse2( range , ... ) for range { __VA_ARGS__ ; }; -#define thread_loop_collapse ( N , range , ... ) for range { __VA_ARGS__ ; }; +#define thread_loop_collapse( N , range , ... ) for range { __VA_ARGS__ ; }; #define thread_region #define thread_loop_in_region( range , ... ) for range { __VA_ARGS__ ; }; #define thread_loop_collapse_in_region( N, range , ... ) for range { __VA_ARGS__ ; };