You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- include $(KERNELDIR)/KERNEL.CORTEXA57
-
- ifeq ($(DGEMM_UNROLL_M)x$(DGEMM_UNROLL_N), 8x4)
- DGEMMKERNEL = dgemm_kernel_8x4_thunderx2t99.S
- else
- DGEMMKERNEL = dgemm_kernel_$(DGEMM_UNROLL_M)x$(DGEMM_UNROLL_N).S
- endif
-
- ifeq ($(SGEMM_UNROLL_M)x$(SGEMM_UNROLL_N), 16x4)
- SGEMMKERNEL = sgemm_kernel_16x4_thunderx2t99.S
- else
- SGEMMKERNEL = sgemm_kernel_$(SGEMM_UNROLL_M)x$(SGEMM_UNROLL_N).S
- endif
|