mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-14 02:02:46 +00:00
Codegen: isSupportedArgument check (#1417)
* added isSupportedArgument check into codegen device op
* adding function call
* remove commented code
[ROCm/composable_kernel commit: d32997a792]
This commit is contained in:
@@ -233,6 +233,12 @@ extern "C" __global__ void run_${name}(
|
||||
${BElementwiseOperation}{},
|
||||
${CDEElementwiseOperation}{1.0f, 1.0f});
|
||||
|
||||
if(!DeviceConv::IsSupportedArgument(arg))
|
||||
{
|
||||
printf("Arguement is not supported.\n");
|
||||
return;
|
||||
};
|
||||
|
||||
constexpr ck::LoopScheduler LoopSched = ck::make_default_loop_scheduler();
|
||||
|
||||
// GridwiseGemm
|
||||
|
||||
Reference in New Issue
Block a user