@@ -2874,18 +2874,6 @@ config_host_data.set('CONFIG_AVX2_OPT', get_option('avx2') \
2874
2874
int main(int argc, char *argv[]) { return bar(argv[argc - 1]); }
2875
2875
''' ), error_message : ' AVX2 not available' ).allowed())
2876
2876
2877
- config_host_data.set(' CONFIG_AVX512F_OPT' , get_option (' avx512f' ) \
2878
- .require(have_cpuid_h, error_message : ' cpuid.h not available, cannot enable AVX512F' ) \
2879
- .require(cc.links('''
2880
- #include <cpuid.h>
2881
- #include <immintrin.h>
2882
- static int __attribute__((target("avx512f"))) bar(void *a) {
2883
- __m512i x = *(__m512i *)a;
2884
- return _mm512_test_epi64_mask(x, x);
2885
- }
2886
- int main(int argc, char *argv[]) { return bar(argv[argc - 1]); }
2887
- ''' ), error_message : ' AVX512F not available' ).allowed())
2888
-
2889
2877
config_host_data.set(' CONFIG_AVX512BW_OPT' , get_option (' avx512bw' ) \
2890
2878
.require(have_cpuid_h, error_message : ' cpuid.h not available, cannot enable AVX512BW' ) \
2891
2879
.require(cc.links('''
@@ -4283,7 +4271,6 @@ summary_info += {'mutex debugging': get_option('debug_mutex')}
4283
4271
summary_info += {' memory allocator' : get_option (' malloc' )}
4284
4272
summary_info += {' avx2 optimization' : config_host_data.get(' CONFIG_AVX2_OPT' )}
4285
4273
summary_info += {' avx512bw optimization' : config_host_data.get(' CONFIG_AVX512BW_OPT' )}
4286
- summary_info += {' avx512f optimization' : config_host_data.get(' CONFIG_AVX512F_OPT' )}
4287
4274
summary_info += {' gcov' : get_option (' b_coverage' )}
4288
4275
summary_info += {' thread sanitizer' : get_option (' tsan' )}
4289
4276
summary_info += {' CFI support' : get_option (' cfi' )}
0 commit comments