From 31d6b6d4b721dd0613dd52b6e795e3190a32bb46 Mon Sep 17 00:00:00 2001 From: Alp Dener Date: Fri, 3 Jul 2026 02:18:24 +0000 Subject: [PATCH] fixing Blackwell skip condition for grouped FP8 block-scaling tests in C++ Signed-off-by: Alp Dener --- tests/cpp/operator/test_cast_float8blockwise_grouped.cu | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/cpp/operator/test_cast_float8blockwise_grouped.cu b/tests/cpp/operator/test_cast_float8blockwise_grouped.cu index c7d7a73475..bc9f104e17 100644 --- a/tests/cpp/operator/test_cast_float8blockwise_grouped.cu +++ b/tests/cpp/operator/test_cast_float8blockwise_grouped.cu @@ -74,7 +74,8 @@ template void perform_test(ShapeRep shape_rep, BlockDim block_dim, ScalingDir dir, const std::vector& first_dims_h, size_t K, bool force_pow_2_scales, float epsilon) { - if (getDeviceComputeCapability() < hopperComputeCapability) { + if (getDeviceComputeCapability() < hopperComputeCapability || + getDeviceComputeCapability() >= blackwellComputeCapability) { GTEST_SKIP(); }