Skip to content

Commit

Permalink
Merge pull request OpenMathLib#4738 from martin-frbg/issue4737
Browse files Browse the repository at this point in the history
Disable GEMM3M for generic targets (not implemented)
  • Loading branch information
martin-frbg authored Jun 6, 2024
2 parents 0cf8b98 + 2787c9f commit 442dec2
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 442dec2

Please sign in to comment.