Browse Source

refs #80. Used GEMV SSE2 kernels on x86.

tags/v0.1.0^2
unknown 14 years ago
parent
commit
dff146e306
1 changed files with 16 additions and 0 deletions
  1. +16
    -0
      kernel/x86/KERNEL

+ 16
- 0
kernel/x86/KERNEL View File

@@ -239,6 +239,22 @@ ifndef ZSWAPKERNEL
ZSWAPKERNEL = zswap_sse2.S
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




Loading…
Cancel
Save