Commit c0863d6e authored by Po-Yen, Chen's avatar Po-Yen, Chen
Browse files

Fix compilation error if we enable fp32 in profiler

parent ff197e27
...@@ -124,7 +124,7 @@ int profile_gemm(int argc, char* argv[]) ...@@ -124,7 +124,7 @@ int profile_gemm(int argc, char* argv[])
if(false) if(false)
; ;
#ifdef __fp32__ #ifdef __fp32__
if(data_type == GemmDataType::F32_F32_F32 && layout == GemmMatrixLayout::MK_KN_MN) else if(data_type == GemmDataType::F32_F32_F32 && layout == GemmMatrixLayout::MK_KN_MN)
{ {
return profile(Row{}, Row{}, Row{}, F32{}, F32{}, F32{}, F32{}); return profile(Row{}, Row{}, Row{}, F32{}, F32{}, F32{}, F32{});
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment