From: Martin Kronbichler Date: Tue, 24 Mar 2020 17:49:07 +0000 (+0100) Subject: Unconditionally bail out on non-AVX 256 vectorization without SSE2. X-Git-Tag: v9.2.0-rc1~358^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=89be6b8b325815ef159558935619ab1d950092f2;p=dealii.git Unconditionally bail out on non-AVX 256 vectorization without SSE2. x86-64 is currently the only architecture and the file needs to be extended in case we want to support other architectures as well. --- diff --git a/include/deal.II/base/vectorization.h b/include/deal.II/base/vectorization.h index 5a169c4f68..e7243bcf75 100644 --- a/include/deal.II/base/vectorization.h +++ b/include/deal.II/base/vectorization.h @@ -49,16 +49,12 @@ // add -march=native or similar flags, making it fall to SSE2. This leads to // very strange errors as the size of data structures differs between the // compiled deal.II code sitting in libdeal_II.so and the user code if not -// detected. The __SSE2__ flag ensures that we are actually on a x86-64 -// architecture as we do not want to emit the error on another architecture -// with 256 bit vectors. -# if DEAL_II_VECTORIZATION_WIDTH_IN_BITS >= 256 && defined(__SSE2__) && \ - !defined(__AVX__) +// detected. +# if DEAL_II_VECTORIZATION_WIDTH_IN_BITS >= 256 && !defined(__AVX__) # error \ "Mismatch in vectorization capabilities: AVX was detected during configuration of deal.II and switched on, but it is apparently not available for the file you are trying to compile at the moment. Check compilation flags controlling the instruction set, such as -march=native." # endif -# if DEAL_II_VECTORIZATION_WIDTH_IN_BITS >= 512 && defined(__SSE2__) && \ - !defined(__AVX512F__) +# if DEAL_II_VECTORIZATION_WIDTH_IN_BITS >= 512 && !defined(__AVX512F__) # error \ "Mismatch in vectorization capabilities: AVX-512F was detected during configuration of deal.II and switched on, but it is apparently not available for the file you are trying to compile at the moment. Check compilation flags controlling the instruction set, such as -march=native." # endif