Skip to content

Commit

Permalink
Merge pull request #1068 from sva-img/develop
Browse files Browse the repository at this point in the history
Added MSA optimised rot functions.
  • Loading branch information
xianyi authored Jan 17, 2017
2 parents e8d0e66 + a4d97d9 commit ab2033f
Show file tree
Hide file tree
Showing 5 changed files with 3,995 additions and 0 deletions.
7 changes: 7 additions & 0 deletions kernel/mips/KERNEL.P5600
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,17 @@ DNRM2KERNEL = ../mips/nrm2.c
CNRM2KERNEL = ../mips/znrm2.c
ZNRM2KERNEL = ../mips/znrm2.c

ifdef HAVE_MSA
SROTKERNEL = ../mips/srot_msa.c
DROTKERNEL = ../mips/drot_msa.c
CROTKERNEL = ../mips/crot_msa.c
ZROTKERNEL = ../mips/zrot_msa.c
else
SROTKERNEL = ../mips/rot.c
DROTKERNEL = ../mips/rot.c
CROTKERNEL = ../mips/zrot.c
ZROTKERNEL = ../mips/zrot.c
endif

ifdef HAVE_MSA
SSCALKERNEL = ../mips/sscal_msa.c
Expand Down
Loading

0 comments on commit ab2033f

Please sign in to comment.