From d47b9e8fd0c6eb2f31fb4ad3d26c8d749fc89d01 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Wed, 10 Jul 2019 13:28:10 -0400 Subject: [PATCH] intel: ignore simd warning with intel 19.0.4 with vectorization I am getting spammed with warnings like ``` deal-git/include/deal.II/lac/la_vector.templates.h(405): warning #15552: loop was not vectorized with "simd" ``` I think this is safe to ignore. --- cmake/setup_compiler_flags_intel.cmake | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmake/setup_compiler_flags_intel.cmake b/cmake/setup_compiler_flags_intel.cmake index 91457b5914..fe47b5666e 100644 --- a/cmake/setup_compiler_flags_intel.cmake +++ b/cmake/setup_compiler_flags_intel.cmake @@ -109,6 +109,7 @@ ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-diag-disable=remark") # -w3415 the "always_inline" attribute is ignored on non-inline functions # incorrectly triggered by inline functions in tensor.h # -w15531 A portion of SIMD loop is serialized +# -w15552 loop was not vectorized with "simd" # ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-wd21") ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-wd68") @@ -129,6 +130,7 @@ ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-wd2536") ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-wd2651") ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-wd3415") ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-wd15531") +ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-wd15552") # -- 2.39.5