Skip to content

Commit 9fbbf8e

Browse files
protonucsarofeen
andauthored
Fix types in the stmatrix test in test_mma.cpp (#3614)
Fixing types: int -> int64_t This is based on top of: #3613 --------- Co-authored-by: Christian Sarofeen <[email protected]>
1 parent a5f5e63 commit 9fbbf8e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/cpp/test_mma.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ using HopperMmaRSStMatrixTestParams = std::tuple<
405405
PrimDataType,
406406
MmaLayout,
407407
MmaInputSmemSwizzle,
408-
std::vector<int>>;
408+
std::vector<int64_t>>;
409409

410410
class HopperRSStmatrix
411411
: public HopperBase,
@@ -415,7 +415,7 @@ class HopperRSStmatrix
415415
MmaMacro macro;
416416
PrimDataType dtype;
417417
MmaInputSmemSwizzle swizzle_b;
418-
std::vector<int> tile_sizes;
418+
std::vector<int64_t> tile_sizes;
419419

420420
void SetUp() override {
421421
HopperBase::SetUp();
@@ -574,8 +574,8 @@ INSTANTIATE_TEST_SUITE_P(
574574
kAllSmemSwizzleModes,
575575
testing::Values(
576576
// M, N
577-
std::vector<int>{16, 8},
578-
std::vector<int>{16, 16})));
577+
std::vector<int64_t>{16, 8},
578+
std::vector<int64_t>{16, 16})));
579579

580580
INSTANTIATE_TEST_SUITE_P(
581581
MmaTest,

0 commit comments

Comments
 (0)