Browse Source

Merge pull request #4851 from martin-frbg/test3m

Fix invocation of GEMM3M tests in gmake builds
tags/v0.3.28^2
Martin Kroeker GitHub 1 year ago
parent
commit
d92cc96978
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 2 deletions
  1. +5
    -2
      test/Makefile

+ 5
- 2
test/Makefile View File

@@ -189,8 +189,11 @@ endif
endif endif




ifeq ($(SUPPORT_GEMM3M),1)
level3: $(B3) $(S3) $(D3) $(C3) $(Z3) level3_3m
else
level3: $(B3) $(S3) $(D3) $(C3) $(Z3) level3: $(B3) $(S3) $(D3) $(C3) $(Z3)

endif


ifneq ($(CROSS), 1) ifneq ($(CROSS), 1)
rm -f ?BLAT3.SUMM rm -f ?BLAT3.SUMM
@@ -263,7 +266,7 @@ endif
endif endif




level3_3m : zblat3_3m cblat3_3m
level3_3m: zblat3_3m cblat3_3m
ifneq ($(CROSS), 1) ifneq ($(CROSS), 1)
rm -f ?BLAT3_3M.SUMM rm -f ?BLAT3_3M.SUMM
OPENBLAS_NUM_THREADS=1 OMP_NUM_THREADS=1 ./cblat3_3m < ./cblat3_3m.dat OPENBLAS_NUM_THREADS=1 OMP_NUM_THREADS=1 ./cblat3_3m < ./cblat3_3m.dat


Loading…
Cancel
Save