|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- ifndef SAMINKERNEL
- SAMINKERNEL = amax.S
- endif
-
- ifndef DAMINKERNEL
- DAMINKERNEL = amax.S
- endif
-
- ifndef CAMINKERNEL
- CAMINKERNEL = zamax.S
- endif
-
- ifndef ZAMINKERNEL
- ZAMINKERNEL = zamax.S
- endif
-
- ifndef SMINKERNEL
- SMINKERNEL = max.S
- endif
-
- ifndef DMINKERNEL
- DMINKERNEL = max.S
- endif
-
- ifndef ISAMINKERNEL
- ISAMINKERNEL = iamax.S
- endif
-
- ifndef IDAMINKERNEL
- IDAMINKERNEL = iamax.S
- endif
-
- ifndef ICAMINKERNEL
- ICAMINKERNEL = izamax.S
- endif
-
- ifndef IZAMINKERNEL
- IZAMINKERNEL = izamax.S
- endif
-
- ifndef ISMINKERNEL
- ISMINKERNEL = imax.S
- endif
-
- ifndef IDMINKERNEL
- IDMINKERNEL = imax.S
- endif
-
- ifndef ISMAXKERNEL
- ISMAXKERNEL = imax.S
- endif
-
- ifndef IDMAXKERNEL
- IDMAXKERNEL = imax.S
- endif
-
- ifndef SNRM2KERNEL
- SNRM2KERNEL = snrm2.S
- endif
-
- ifndef DNRM2KERNEL
- DNRM2KERNEL = dnrm2.S
- endif
-
- ifndef CNRM2KERNEL
- CNRM2KERNEL = cnrm2.S
- endif
-
- ifndef ZNRM2KERNEL
- ZNRM2KERNEL = znrm2.S
- endif
-
- SGEMM_BETA = ../generic/gemm_beta.c
- DGEMM_BETA = ../generic/gemm_beta.c
- CGEMM_BETA = ../generic/zgemm_beta.c
- ZGEMM_BETA = ../generic/zgemm_beta.c
-
- ifndef SROTMKERNEL
- SROTMKERNEL = ../generic/rotm.c
- endif
-
- ifndef DROTMKERNEL
- DROTMKERNEL = ../generic/rotm.c
- endif
-
- ifndef QROTMKERNEL
- QROTMKERNEL = ../generic/rotm.c
- endif
-
- SSCALKERNEL = ../arm/scal.c
- DSCALKERNEL = ../arm/scal.c
- CSCALKERNEL = ../arm/zscal.c
- ZSCALKERNEL = ../arm/zscal.c
|