Browse Source

enable GEMM/GEMV forwarding for riscv and ppc

tags/v0.3.28^2
Martin Kroeker GitHub 1 year ago
parent
commit
fcb88b9d52
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      Makefile.system

+ 6
- 0
Makefile.system View File

@@ -277,6 +277,12 @@ endif
ifeq ($(ARCH), arm64)
GEMM_GEMV_FORWARD = 1
endif
ifeq($(ARCH), riscv)
GEMM_GEMV_FORWARD = 1
endif
ifeq ($(ARCH), power)
GEMM_GEMV_FORWARD = 1
endif

ifeq ($(SMALL_MATRIX_OPT), 1)
CCOMMON_OPT += -DSMALL_MATRIX_OPT


Loading…
Cancel
Save