From 367fa927f8d0ff91450c3f9364e74731af886565 Mon Sep 17 00:00:00 2001 From: Hansung Kim Date: Tue, 29 Oct 2024 14:56:18 -0700 Subject: [PATCH] sgemm_impl: Fix default FP_SIZE to 16 --- tests/regression/sgemm_tcore/sgemm_impl.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/regression/sgemm_tcore/sgemm_impl.hpp b/tests/regression/sgemm_tcore/sgemm_impl.hpp index 7e6c7ee8..afc37542 100644 --- a/tests/regression/sgemm_tcore/sgemm_impl.hpp +++ b/tests/regression/sgemm_tcore/sgemm_impl.hpp @@ -6,7 +6,7 @@ #include "include/gemmini.h" #include "gemmini_mmio.h" -#define FP_SIZE 32 +#define FP_SIZE 16 // "fake" fp16 type that only has the correct data width. using float16_t = uint16_t;