@@ -51,7 +51,7 @@ AC_DEFUN([MCA_ompi_op_avx_CONFIG],[
51
51
[AC_LANG_PROGRAM([[# include <immintrin.h>]],
52
52
[[
53
53
# if defined(__ICC) && !defined(__AVX512F__)
54
- # error "icc needs the -m flags to provide the AVX* detection macros
54
+ # error "icc needs the -m flags to provide the AVX* detection macros"
55
55
# endif
56
56
__m512 vA, vB;
57
57
_mm512_add_ps(vA, vB)
@@ -68,7 +68,7 @@ AC_DEFUN([MCA_ompi_op_avx_CONFIG],[
68
68
[AC_LANG_PROGRAM([[# include <immintrin.h>]],
69
69
[[
70
70
# if defined(__ICC) && !defined(__AVX512F__)
71
- # error "icc needs the -m flags to provide the AVX* detection macros
71
+ # error "icc needs the -m flags to provide the AVX* detection macros"
72
72
# endif
73
73
__m512 vA, vB;
74
74
_mm512_add_ps(vA, vB)
@@ -91,7 +91,7 @@ AC_DEFUN([MCA_ompi_op_avx_CONFIG],[
91
91
[AC_LANG_PROGRAM([[# include <immintrin.h>]],
92
92
[[
93
93
# if defined(__ICC) && !defined(__AVX512F__)
94
- # error "icc needs the -m flags to provide the AVX* detection macros
94
+ # error "icc needs the -m flags to provide the AVX* detection macros"
95
95
# endif
96
96
int A[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16};
97
97
__m512i vA = _mm512_loadu_si512(( __m512 i* )& (A[1 ]))
@@ -113,7 +113,7 @@ AC_DEFUN([MCA_ompi_op_avx_CONFIG],[
113
113
[AC_LANG_PROGRAM([[# include <immintrin.h>]],
114
114
[[
115
115
# if defined(__ICC) && !defined(__AVX512F__)
116
- # error "icc needs the -m flags to provide the AVX* detection macros
116
+ # error "icc needs the -m flags to provide the AVX* detection macros"
117
117
# endif
118
118
__m512i vA, vB;
119
119
_mm512_mullo_epi64(vA, vB)
@@ -134,7 +134,7 @@ AC_DEFUN([MCA_ompi_op_avx_CONFIG],[
134
134
[AC_LANG_PROGRAM([[# include <immintrin.h>]],
135
135
[[
136
136
# if defined(__ICC) && !defined(__AVX2__)
137
- # error "icc needs the -m flags to provide the AVX* detection macros
137
+ # error "icc needs the -m flags to provide the AVX* detection macros"
138
138
# endif
139
139
__m256i vA, vB, vC;
140
140
vC = _mm256_and_si256(vA, vB)
@@ -150,7 +150,7 @@ AC_DEFUN([MCA_ompi_op_avx_CONFIG],[
150
150
[AC_LANG_PROGRAM([[# include <immintrin.h>]],
151
151
[[
152
152
# if defined(__ICC) && !defined(__AVX2__)
153
- # error "icc needs the -m flags to provide the AVX* detection macros
153
+ # error "icc needs the -m flags to provide the AVX* detection macros"
154
154
# endif
155
155
__m256i vA, vB, vC;
156
156
vC = _mm256_and_si256(vA, vB)
@@ -173,7 +173,7 @@ AC_DEFUN([MCA_ompi_op_avx_CONFIG],[
173
173
[AC_LANG_PROGRAM([[# include <immintrin.h>]],
174
174
[[
175
175
# if defined(__ICC) && !defined(__AVX2__)
176
- # error "icc needs the -m flags to provide the AVX* detection macros
176
+ # error "icc needs the -m flags to provide the AVX* detection macros"
177
177
# endif
178
178
int A[8] = {0, 1, 2, 3, 4, 5, 6, 7};
179
179
__m256i vA = _mm256_loadu_si256(( __m256 i* )& A)
@@ -199,7 +199,7 @@ AC_DEFUN([MCA_ompi_op_avx_CONFIG],[
199
199
[AC_LANG_PROGRAM([[# include <immintrin.h>]],
200
200
[[
201
201
# if defined(__ICC) && !defined(__AVX__)
202
- # error "icc needs the -m flags to provide the AVX* detection macros
202
+ # error "icc needs the -m flags to provide the AVX* detection macros"
203
203
# endif
204
204
__m256 vA, vB, vC;
205
205
vC = _mm256_add_ps(vA, vB)
@@ -217,7 +217,7 @@ AC_DEFUN([MCA_ompi_op_avx_CONFIG],[
217
217
[AC_LANG_PROGRAM([[# include <immintrin.h>]],
218
218
[[
219
219
# if defined(__ICC) && !defined(__SSE4_1__)
220
- # error "icc needs the -m flags to provide the AVX* detection macros
220
+ # error "icc needs the -m flags to provide the AVX* detection macros"
221
221
# endif
222
222
__m128i vA, vB;
223
223
(void)_mm_max_epi8(vA, vB)
@@ -236,7 +236,7 @@ AC_DEFUN([MCA_ompi_op_avx_CONFIG],[
236
236
[AC_LANG_PROGRAM([[# include <immintrin.h>]],
237
237
[[
238
238
# if defined(__ICC) && !defined(__SSE3__)
239
- # error "icc needs the -m flags to provide the AVX* detection macros
239
+ # error "icc needs the -m flags to provide the AVX* detection macros"
240
240
# endif
241
241
int A[4] = {0, 1, 2, 3};
242
242
__m128i vA = _mm_lddqu_si128(( __m128 i* )& A)
@@ -256,7 +256,7 @@ AC_DEFUN([MCA_ompi_op_avx_CONFIG],[
256
256
[[
257
257
__m256 vA, vB, vC;
258
258
#if defined(__ICC) && !defined(__AVX__)
259
- #error "icc needs the -m flags to provide the AVX* detection macros
259
+ #error "icc needs the -m flags to provide the AVX* detection macros"
260
260
#endif
261
261
vC = _mm256 _add_ps(vA, vB)
262
262
]])],
@@ -273,7 +273,7 @@ AC_DEFUN([MCA_ompi_op_avx_CONFIG],[
273
273
[AC_LANG_PROGRAM([[#include <immintrin.h>]],
274
274
[[
275
275
#if defined(__ICC) && !defined(__SSE4 _1 __)
276
- #error "icc needs the -m flags to provide the AVX* detection macros
276
+ #error "icc needs the -m flags to provide the AVX* detection macros"
277
277
#endif
278
278
__m128 i vA, vB;
279
279
(void)_mm_max_epi8 (vA, vB)
@@ -287,7 +287,7 @@ AC_DEFUN([MCA_ompi_op_avx_CONFIG],[
287
287
[AC_LANG_PROGRAM([[#include <immintrin.h>]],
288
288
[[
289
289
#if defined(__ICC) && !defined(__SSE3 __)
290
- #error "icc needs the -m flags to provide the AVX* detection macros
290
+ #error "icc needs the -m flags to provide the AVX* detection macros"
291
291
#endif
292
292
int A[4 ] = {0 , 1 , 2 , 3 };
293
293
__m128 i vA = _mm_lddqu_si128 ((__m128 i*)&A)
0 commit comments