mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-21 13:29:20 +00:00
Stylistic improvements for grouped convolution code
Remove unnecessary ignoring
Update test/grouped_convnd_bwd_weight/test_grouped_convnd_bwd_weight.cpp
[ROCm/composable_kernel commit: bc2d0583d3]
This commit is contained in:
committed by
Bartłomiej Kocot
parent
a49f4ff995
commit
775ae67af3
@@ -33,8 +33,8 @@ class TestGroupedConvndBwdWeight : public ::testing::Test
|
||||
|
||||
bool skip_case(const ck::utils::conv::ConvParam& params, const ck::index_t split_k)
|
||||
{
|
||||
// K or C are odd is supported only by DL kernel (only applies to fp16)
|
||||
// DL kernel is only supported for split_k=1
|
||||
// Odd K or C values are supported only by DL kernel (only applies to fp16)
|
||||
// DL kernel currently supports only `split_k=1`
|
||||
if constexpr(std::is_same_v<InDataType, ck::half_t>)
|
||||
{
|
||||
if(split_k != 1 && (params.K_ % 2 != 0 || params.C_ % 2 != 0))
|
||||
|
||||
Reference in New Issue
Block a user