From a7c02c7ceb7e32e5830d4caeb9bb2d67af5e11ae Mon Sep 17 00:00:00 2001 From: Marcogarofalo Date: Thu, 7 Dec 2023 18:45:12 +0100 Subject: [PATCH] fix omp in reorder_mom_fromQuda --- quda_interface.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/quda_interface.c b/quda_interface.c index 2438ffd38..716649bbe 100644 --- a/quda_interface.c +++ b/quda_interface.c @@ -677,11 +677,6 @@ void reorder_mom_fromQuda() { // mom_quda -> mom_quda_reordered tm_stopwatch_push(&g_timers, __func__, ""); -#ifdef TM_USE_OMP -#pragma omp parallel - { -#endif - #ifdef TM_USE_OMP #pragma omp parallel for collapse(4) #endif @@ -713,9 +708,6 @@ void reorder_mom_fromQuda() { #endif } -#ifdef TM_USE_OMP - } -#endif tm_stopwatch_pop(&g_timers, 0, 0, "TM_QUDA"); }