Skip to content

Commit 442dec2

Browse files
authored
Merge pull request #4738 from martin-frbg/issue4737
Disable GEMM3M for generic targets (not implemented)
2 parents 0cf8b98 + 2787c9f commit 442dec2

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

kernel/Makefile.L3

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,16 @@ ifeq ($(ARCH), ia64)
1717
USE_GEMM3M = 1
1818
endif
1919

20+
ifneq ($(DYNAMIC_ARCH), 1)
21+
ifeq ($(TARGET), GENERIC)
22+
USE_GEMM3M = 0
23+
endif
24+
else
25+
ifeq ($(CORE), GENERIC)
26+
USE_GEMM3M = 0
27+
endif
28+
endif
29+
2030
ifeq ($(ARCH), arm)
2131
USE_TRMM = 1
2232
endif

0 commit comments

Comments
 (0)