refs #80. Used GEMV SSE2 kernels on x86.
This commit is contained in:
parent
722dd08703
commit
dff146e306
|
@ -239,6 +239,22 @@ ifndef ZSWAPKERNEL
|
||||||
ZSWAPKERNEL = zswap_sse2.S
|
ZSWAPKERNEL = zswap_sse2.S
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifndef DGEMVNKERNEL
|
||||||
|
DGEMVNKERNEL = gemv_n_sse2.S
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifndef DGEMVTKERNEL
|
||||||
|
DGEMVTKERNEL = gemv_t_sse2.S
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifndef ZGEMVNKERNEL
|
||||||
|
ZGEMVNKERNEL = zgemv_n_sse2.S
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifndef ZGEMVTKERNEL
|
||||||
|
ZGEMVTKERNEL = zgemv_t_sse2.S
|
||||||
|
endif
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue