From 1ab0e0611bfb905a09d25ebe2c36455ccf2be8a0 Mon Sep 17 00:00:00 2001
From: Sebastian Eibl <sebastian.eibl@fau.de>
Date: Wed, 24 Apr 2019 14:14:12 +0200
Subject: [PATCH] addressing segfault in intel 17 hybrid builds

disabled OpenMP parallelization for intel 17
in a non performance critical section
---
 src/blockforest/loadbalancing/DynamicCurve.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/blockforest/loadbalancing/DynamicCurve.h b/src/blockforest/loadbalancing/DynamicCurve.h
index 678642067..37d96bcbe 100644
--- a/src/blockforest/loadbalancing/DynamicCurve.h
+++ b/src/blockforest/loadbalancing/DynamicCurve.h
@@ -720,7 +720,7 @@ void DynamicCurveBalance< PhantomData_T >::mortonOrderWeighted( const std::vecto
       }
    }
       
-#if defined(_OPENMP) && ((__INTEL_COMPILER < 1800) || (__INTEL_COMPILER > 1900)) // Disable OpenMP for Intel 2018/2019 due to a bug
+#if defined(_OPENMP) && ((__INTEL_COMPILER < 1700) || (__INTEL_COMPILER > 1900)) // Disable OpenMP for Intel 2018/2019 due to a bug
    #pragma omp parallel for schedule(static)
 #endif
    for( int i = 0; i < int_c( blocksPerLevel.size() ); ++i )
-- 
GitLab