From 2062280c6fab0cf02046b7c5c783b3fc124c5a27 Mon Sep 17 00:00:00 2001 From: VFerrari Date: Sat, 25 Jun 2022 03:28:23 -0300 Subject: [PATCH] Power: Enable SMALL_MATRIX OPT as default for dynamic arch --- Makefile.system | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.system b/Makefile.system index b1593e8f5..c696e0ddb 100644 --- a/Makefile.system +++ b/Makefile.system @@ -261,7 +261,7 @@ endif #For small matrix optimization ifeq ($(ARCH), x86_64) SMALL_MATRIX_OPT = 1 -else ifeq ($(CORE), POWER10) +else ifeq ($(ARCH), power) SMALL_MATRIX_OPT = 1 endif ifeq ($(SMALL_MATRIX_OPT), 1)