Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion tests/cpp/test_combined_inner_outer_reduction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1174,7 +1174,13 @@ TEST_P(TmaWarpSpecializedTest, RMSNormBwd) {

TEST_P(TmaWarpSpecializedTest, ThunderRMSNormBwd) {
NVFUSER_TEST_CUDA_ARCH_GUARD(9, 0);
auto [contig, _, dtype, dim0, dim1] = GetParam();
auto [contig, ws_enabled, dtype, dim0, dim1] = GetParam();

if (ws_enabled) {
GTEST_SKIP() << "Bdimx is dynamic, Warp Specialization is disabled.";
return;
}

std::vector<int64_t> norm_shape{dim1};

auto fusion = std::make_unique<Fusion>();
Expand Down