Skip to content

Commit

Permalink
Disable GEMM3M for generic targets (not implemented)
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-frbg authored Jun 6, 2024
1 parent 4e9144b commit 2787c9f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions kernel/Makefile.L3
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,16 @@ ifeq ($(ARCH), ia64)
USE_GEMM3M = 1
endif

ifneq ($(DYNAMIC_ARCH), 1)
ifeq ($(TARGET), GENERIC)
USE_GEMM3M = 0
endif
else
ifeq ($(CORE), GENERIC)
USE_GEMM3M = 0
endif
endif

ifeq ($(ARCH), arm)
USE_TRMM = 1
endif
Expand Down

0 comments on commit 2787c9f

Please sign in to comment.