refs #80. Used GEMV SSE2 kernels on x86.

This commit is contained in:
unknown 2012-03-19 17:56:22 +08:00
parent 722dd08703
commit dff146e306
1 changed files with 16 additions and 0 deletions

View File

@ -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