Skip to content

Commit

Permalink
fix pragma omp
Browse files Browse the repository at this point in the history
  • Loading branch information
WeiqunZhang committed Dec 3, 2019
1 parent a367b50 commit 04f34c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Src/LinearSolvers/MLMG/AMReX_MLNodeLaplacian.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2273,7 +2273,7 @@ MLNodeLaplacian::buildIntegral ()
MFItInfo mfi_info;
if (Gpu::notInLaunchRegion()) mfi_info.EnableTiling().SetDynamic(true);
#ifdef _OPENMP
#pragma omp parallel if (Gpu::notInLaunchRegion());
#pragma omp parallel if (Gpu::notInLaunchRegion())
#endif
for (MFIter mfi(*intg,mfi_info); mfi.isValid(); ++mfi)
{
Expand Down

0 comments on commit 04f34c9

Please sign in to comment.