2015-06-09 11:25:49 +00:00
|
|
|
ifeq ($(subdir),mathvec)
|
|
|
|
libmvec-support += svml_d_cos2_core svml_d_cos4_core_avx \
|
|
|
|
svml_d_cos4_core svml_d_cos8_core \
|
2015-06-11 14:12:38 +00:00
|
|
|
svml_d_cos_data svml_d_sin2_core svml_d_sin4_core_avx \
|
|
|
|
svml_d_sin4_core svml_d_sin8_core svml_d_sin_data \
|
|
|
|
svml_s_cosf4_core svml_s_cosf8_core_avx \
|
2015-06-09 15:29:47 +00:00
|
|
|
svml_s_cosf8_core svml_s_cosf16_core svml_s_cosf_data \
|
2015-06-15 12:06:53 +00:00
|
|
|
svml_s_sinf4_core svml_s_sinf8_core_avx \
|
|
|
|
svml_s_sinf8_core svml_s_sinf16_core svml_s_sinf_data \
|
2015-06-17 12:38:29 +00:00
|
|
|
svml_d_log2_core svml_d_log4_core_avx svml_d_log4_core \
|
2015-06-17 12:53:00 +00:00
|
|
|
svml_d_log8_core svml_d_log_data svml_s_logf4_core \
|
|
|
|
svml_s_logf8_core_avx svml_s_logf8_core svml_s_logf16_core \
|
2015-06-17 12:58:05 +00:00
|
|
|
svml_s_logf_data svml_d_exp2_core svml_d_exp4_core_avx \
|
|
|
|
svml_d_exp4_core svml_d_exp8_core svml_d_exp_data \
|
2015-06-09 15:29:47 +00:00
|
|
|
init-arch
|
2015-06-09 11:25:49 +00:00
|
|
|
endif
|
2015-06-09 11:51:52 +00:00
|
|
|
|
|
|
|
# Variables for libmvec tests.
|
|
|
|
ifeq ($(subdir),math)
|
|
|
|
ifeq ($(build-mathvec),yes)
|
2015-06-09 15:32:42 +00:00
|
|
|
libmvec-tests += double-vlen2 double-vlen4 double-vlen4-avx2 \
|
|
|
|
float-vlen4 float-vlen8 float-vlen8-avx2
|
2015-06-09 11:51:52 +00:00
|
|
|
|
|
|
|
ifeq (yes,$(config-cflags-avx512))
|
2015-06-09 15:32:42 +00:00
|
|
|
libmvec-tests += double-vlen8 float-vlen16
|
2015-06-09 11:51:52 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
double-vlen2-arch-ext-cflags = -msse4
|
|
|
|
double-vlen4-arch-ext-cflags = -mavx
|
|
|
|
double-vlen4-arch-ext2-cflags = -mavx2
|
|
|
|
double-vlen8-arch-ext-cflags = -mavx512f
|
|
|
|
|
2015-06-09 15:32:42 +00:00
|
|
|
float-vlen4-arch-ext-cflags = -msse4
|
|
|
|
float-vlen8-arch-ext-cflags = -mavx
|
|
|
|
float-vlen8-arch-ext2-cflags = -mavx2
|
|
|
|
float-vlen16-arch-ext-cflags = -mavx512f
|
|
|
|
|
2015-06-09 11:51:52 +00:00
|
|
|
CFLAGS-test-double-vlen4-avx2.c = $(libm-test-vec-cflags)
|
|
|
|
CFLAGS-test-double-vlen4-avx2-wrappers.c = $(double-vlen4-arch-ext2-cflags)
|
|
|
|
|
2015-06-09 15:32:42 +00:00
|
|
|
CFLAGS-test-float-vlen8-avx2.c = $(libm-test-vec-cflags)
|
|
|
|
CFLAGS-test-float-vlen8-avx2-wrappers.c = $(float-vlen8-arch-ext2-cflags)
|
|
|
|
|
2015-06-09 11:51:52 +00:00
|
|
|
endif
|
|
|
|
endif
|