ARM64: Let target VULCAN inherit THUNDERX2T99 properties

This commit is contained in:
Ashwin Sekhar T K 2017-01-11 13:17:10 +05:30
parent e8d0e66982
commit 759f37feba
3 changed files with 8 additions and 3 deletions

View File

@ -1,2 +1,8 @@
include $(KERNELDIR)/KERNEL.VULCAN
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

View File

@ -1,4 +1,3 @@
include $(KERNELDIR)/KERNEL.CORTEXA57
include $(KERNELDIR)/KERNEL.THUNDERX2T99
DGEMMKERNEL = dgemm_kernel_$(DGEMM_UNROLL_M)x$(DGEMM_UNROLL_N)_vulcan.S