We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93c118b commit b551b3fCopy full SHA for b551b3f
tests/cpp/operator/test_cublaslt_gemm.cu
@@ -228,6 +228,14 @@ void performTest(const TestParams& params) {
228
229
#ifdef __HIP_PLATFORM_AMD__
230
231
+ #if HIP_VERSION < 70200000
232
+ if (prop.major == 9 && prop.minor == 5 &&
233
+ params.transa && !params.transb &&
234
+ params.m == 2304 && params.k == 768 && params.n == 4096) {
235
+ GTEST_SKIP() << "Skip TN 2304x768x4096 on gfx950 for ROCm < 7.2";
236
+ }
237
+ #endif
238
+
239
// Enable FP8 GEMM + GELU fusion tests only on MI300 (gfx942) with ROCm > 7.0.
240
// hipBLASLt currently supports this config only
241
bool fp8_gelu_fusion_config = false;
0 commit comments