Exit successfully if GEMM instance does not support given problem

This commit is contained in:
Po-Yen, Chen
2022-08-19 16:36:41 -04:00
parent 5e5e99e8c5
commit b268df80dc

View File

@@ -87,7 +87,7 @@ bool run_gemm(const ProblemSize& problem_size, const ExecutionConfig& config)
{
std::cerr << gemm.GetTypeString() << " does not support this problem" << std::endl;
return false;
return true;
}
float ave_time = invoker.Run(argument, StreamConfig{nullptr, config.time_kernel});