Skip to content
Snippets Groups Projects
Commit 170e350a authored by Christian Godenschwager's avatar Christian Godenschwager
Browse files

Disable OpenMP for Intel compiler at buggy loop

parent 8c0a4e8a
Branches
Tags
No related merge requests found
......@@ -719,7 +719,7 @@ void DynamicCurveBalance< PhantomData_T >::mortonOrderWeighted( const std::vecto
}
}
#ifdef _OPENMP
#if defined(_OPENMP) && (__INTEL_COMPILER != 1800) // Disable OpenMP for Intel 2018 due to a bug
#pragma omp parallel for schedule(static)
#endif
for( int i = 0; i < int_c( blocksPerLevel.size() ); ++i )
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment