Skip to content
Merged
Changes from all 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
3 changes: 2 additions & 1 deletion tests/cpp/operator/test_cast_float8blockwise_grouped.cu
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ template <typename InputType, typename OutputType>
void perform_test(ShapeRep shape_rep, BlockDim block_dim, ScalingDir dir,
const std::vector<size_t>& first_dims_h, size_t K,
bool force_pow_2_scales, float epsilon) {
if (getDeviceComputeCapability() < hopperComputeCapability) {
if (getDeviceComputeCapability() < hopperComputeCapability ||
getDeviceComputeCapability() >= blackwellComputeCapability) {
GTEST_SKIP();
}

Expand Down
Loading