Merge pull request #3104 from martin-frbg/issue3103
Enable optimized Haswell/AVX2 kernels for sasum/dasum and srot/drot on Ryzen
This commit is contained in:
commit
074d9bff7f
|
@ -97,3 +97,5 @@ ZTRSMKERNEL_RT = ../generic/trsm_kernel_RT.c
|
|||
CGEMM3MKERNEL = cgemm3m_kernel_8x4_haswell.c
|
||||
ZGEMM3MKERNEL = zgemm3m_kernel_4x4_haswell.c
|
||||
|
||||
SROTKERNEL = srot.c
|
||||
DROTKERNEL = drot.c
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
#if defined(SKYLAKEX)
|
||||
#include "dasum_microk_skylakex-2.c"
|
||||
#elif defined(HASWELL)
|
||||
#elif defined(HASWELL) || defined(ZEN)
|
||||
#include "dasum_microk_haswell-2.c"
|
||||
#endif
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
#if defined(SKYLAKEX)
|
||||
#include "drot_microk_skylakex-2.c"
|
||||
#elif defined(HASWELL)
|
||||
#elif defined(HASWELL) || defined(ZEN)
|
||||
#include "drot_microk_haswell-2.c"
|
||||
#endif
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
#if defined(SKYLAKEX)
|
||||
#include "sasum_microk_skylakex-2.c"
|
||||
#elif defined(HASWELL)
|
||||
#elif defined(HASWELL) || defined(ZEN)
|
||||
#include "sasum_microk_haswell-2.c"
|
||||
#endif
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
#if defined(SKYLAKEX)
|
||||
#include "srot_microk_skylakex-2.c"
|
||||
#elif defined(HASWELL)
|
||||
#elif defined(HASWELL) || defined(ZEN)
|
||||
#include "srot_microk_haswell-2.c"
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue