From e43f3c02a928995de164c5098bef05db145958fc Mon Sep 17 00:00:00 2001 From: Hansung Kim Date: Tue, 28 Jan 2025 17:06:04 -0800 Subject: [PATCH] sgemm_impl: 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 4d121a0f..76d3755d 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;