File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -72,13 +72,10 @@ cdef extern from "mkl.h":
7272 int MKL_ENABLE_AVX512_E2
7373 int MKL_ENABLE_AVX512_E3
7474 int MKL_ENABLE_AVX512_E4
75- int MKL_ENABLE_AVX512_MIC_E1
7675 int MKL_ENABLE_AVX512_E1
7776 int MKL_ENABLE_AVX512
78- int MKL_ENABLE_AVX512_MIC
7977 int MKL_ENABLE_AVX2
8078 int MKL_ENABLE_AVX2_E1
81- int MKL_ENABLE_AVX
8279 int MKL_ENABLE_SSE4_2
8380
8481 # MPI Implementation Constants
Original file line number Diff line number Diff line change @@ -773,12 +773,9 @@ cdef object __enable_instructions(isa=None) except *:
773773 " avx512_e3" : mkl.MKL_ENABLE_AVX512_E3,
774774 " avx512_e2" : mkl.MKL_ENABLE_AVX512_E2,
775775 " avx512_e1" : mkl.MKL_ENABLE_AVX512_E1,
776- " avx512_mic_e1" : mkl.MKL_ENABLE_AVX512_MIC_E1,
777776 " avx512" : mkl.MKL_ENABLE_AVX512,
778- " avx512_mic" : mkl.MKL_ENABLE_AVX512_MIC,
779777 " avx2_e1" : mkl.MKL_ENABLE_AVX2_E1,
780778 " avx2" : mkl.MKL_ENABLE_AVX2,
781- " avx" : mkl.MKL_ENABLE_AVX,
782779 " sse4_2" : mkl.MKL_ENABLE_SSE4_2,
783780 },
784781 }
Original file line number Diff line number Diff line change @@ -247,26 +247,14 @@ def test_cbwr_get_auto_branch():
247247 mkl .cbwr_get_auto_branch ()
248248
249249
250- def test_enable_instructions_avx512_mic_e1 ():
251- mkl .enable_instructions ("avx512_mic_e1" )
252-
253-
254250def test_enable_instructions_avx512 ():
255251 mkl .enable_instructions ("avx512" )
256252
257253
258- def test_enable_instructions_avx512_mic ():
259- mkl .enable_instructions ("avx512_mic" )
260-
261-
262254def test_enable_instructions_avx2 ():
263255 mkl .enable_instructions ("avx2" )
264256
265257
266- def test_enable_instructions_avx ():
267- mkl .enable_instructions ("avx" )
268-
269-
270258def test_enable_instructions_sse4_2 ():
271259 mkl .enable_instructions ("sse4_2" )
272260
You can’t perform that action at this time.
0 commit comments