fix the unsupported scenario of Ali TestGemmUniversal (#1501)

[ROCm/composable_kernel commit: cf08df6b5e]
This commit is contained in:
Thomas Ning
2024-09-09 11:31:27 -07:00
committed by GitHub
parent b736c9b51a
commit a0dfee4f3c

View File

@@ -305,6 +305,14 @@ bool run_gemm(const ProblemType& problem_size, const ExecutionConfig& config)
}
#endif
}
else
{
// When the Problem Type and Problem Size does not fit.
std::cerr << gemm.GetTypeString() << ": the instance does not support the problem config."
<< std::endl;
return true;
}
std::size_t flop = 2_uz * M * N * K;
std::size_t num_btype =