Skip to content

Commit 2f3c3f6

Browse files
committed
fix test (incl removing invalid config)
1 parent efff345 commit 2f3c3f6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

profiler/include/profiler/profile_grouped_gemm_impl.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ bool profile_grouped_gemm_impl(int do_verification,
5757

5858
if(is_same<decltype(layout), tensor_layout::gemm::RowMajor>::value)
5959
{
60-
return HostTensorDescriptor({row, col}, {stride, 1_uz});
60+
return HostTensorDescriptor({row, col}, {stride, 1_uz}, layout);
6161
}
6262
else
6363
{
64-
return HostTensorDescriptor({row, col}, {1_uz, stride});
64+
return HostTensorDescriptor({row, col}, {1_uz, stride}, layout);
6565
}
6666
};
6767

test/grouped_gemm/test_grouped_gemm_ut_cases.inc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
TYPED_TEST(TestGroupedGemm, TinyCases)
44
{
5-
const std::vector<int> Ms{0, 1};
5+
const std::vector<int> Ms{2, 1};
66
constexpr int N = 768;
77
constexpr int K = 544;
88

@@ -14,7 +14,7 @@ TYPED_TEST(TestGroupedGemm, TinyCases)
1414

1515
TYPED_TEST(TestGroupedGemm, SmallCases)
1616
{
17-
const std::vector<int> Ms{2, 1, 3, 4, 5, 0};
17+
const std::vector<int> Ms{2, 1, 3, 4, 5};
1818
constexpr int N = 768;
1919
constexpr int K = 544;
2020

0 commit comments

Comments
 (0)