Browse Source

fix conditional gemm3m build

tags/v0.3.27
Martin Kroeker GitHub 1 year ago
parent
commit
87dd1c710e
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 2 deletions
  1. +7
    -2
      ctest/Makefile

+ 7
- 2
ctest/Makefile View File

@@ -61,7 +61,7 @@ ztestl3o = c_zblas3.o c_z3chke.o auxiliary.o c_xerbla.o constant.o
ztestl3o_3m = c_zblas3_3m.o c_z3chke_3m.o auxiliary.o c_xerbla.o constant.o ztestl3o_3m = c_zblas3_3m.o c_z3chke_3m.o auxiliary.o c_xerbla.o constant.o




all :: all1 all2 all3 all3_3m
all :: all1 all2 all3


ifeq ($(BUILD_SINGLE),1) ifeq ($(BUILD_SINGLE),1)
all1targets += xscblat1 all1targets += xscblat1
@@ -162,9 +162,15 @@ all3targets += xdcblat3
endif endif
ifeq ($(BUILD_COMPLEX),1) ifeq ($(BUILD_COMPLEX),1)
all3targets += xccblat3 all3targets += xccblat3
ifeq ($(USE_GEMM3M),1)
all3targets += xccblat3_3m
endif
endif endif
ifeq ($(BUILD_COMPLEX16),1) ifeq ($(BUILD_COMPLEX16),1)
all3targets += xzcblat3 all3targets += xzcblat3
ifeq ($(USE_GEMM3M),1)
all3targets += xzcblat3_3m
endif
endif endif


all3: $(all3targets) all3: $(all3targets)
@@ -199,7 +205,6 @@ endif
endif endif
endif endif


all3_3m: xzcblat3_3m xccblat3_3m
ifeq ($(SUPPORT_GEMM3M),1) ifeq ($(SUPPORT_GEMM3M),1)
ifeq ($(USE_OPENMP), 1) ifeq ($(USE_OPENMP), 1)
ifeq ($(BUILD_COMPLEX),1) ifeq ($(BUILD_COMPLEX),1)


Loading…
Cancel
Save