mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-07-01 04:07:56 +00:00
Add more instances.
This commit is contained in:
@@ -218,9 +218,29 @@ int run(const std::string& in_layout,
|
||||
{
|
||||
return run_grouped_conv_bwd_weight_example_prec_type<InPrecType>(in_layout, wei_layout, out_layout, argc, argv);
|
||||
}
|
||||
else if (num_groups_to_merge == 2)
|
||||
{
|
||||
return run_grouped_conv_bwd_weight_example_prec_type<InPrecType, 2>(in_layout, wei_layout, out_layout, argc, argv);
|
||||
}
|
||||
else if (num_groups_to_merge == 4)
|
||||
{
|
||||
return run_grouped_conv_bwd_weight_example_prec_type<InPrecType, 4>(in_layout, wei_layout, out_layout, argc, argv);
|
||||
}
|
||||
else if (num_groups_to_merge == 8)
|
||||
{
|
||||
return run_grouped_conv_bwd_weight_example_prec_type<InPrecType>(in_layout, wei_layout, out_layout, argc, argv);
|
||||
return run_grouped_conv_bwd_weight_example_prec_type<InPrecType, 8>(in_layout, wei_layout, out_layout, argc, argv);
|
||||
}
|
||||
else if (num_groups_to_merge == 16)
|
||||
{
|
||||
return run_grouped_conv_bwd_weight_example_prec_type<InPrecType, 16>(in_layout, wei_layout, out_layout, argc, argv);
|
||||
}
|
||||
else if (num_groups_to_merge == 32)
|
||||
{
|
||||
return run_grouped_conv_bwd_weight_example_prec_type<InPrecType, 32>(in_layout, wei_layout, out_layout, argc, argv);
|
||||
}
|
||||
else if (num_groups_to_merge == 64)
|
||||
{
|
||||
return run_grouped_conv_bwd_weight_example_prec_type<InPrecType, 64>(in_layout, wei_layout, out_layout, argc, argv);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user