Skip to content

Commit f096a8f

Browse files
[AUTOGENERATED][rocm7.0_internal_testing][ROCm] Bug fix TunableOp validator UT. (#2588)
Cherry-pick of #2576 Co-authored-by: Nichols A. Romero <[email protected]>
1 parent efcadc0 commit f096a8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_linalg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5217,7 +5217,7 @@ def test_validator_tunableop_rocm(self, device, dtype):
52175217
# Check for rocBLAS and hipBLASLt
52185218
self.assertTrue("ROCBLAS_VERSION" in validators)
52195219
# format: [major].[minor].[patch].[tweak].[commit id]
5220-
self.assertTrue(re.match(r'^\d+.\d+.\d+.\d+.[a-z0-9]+$', validators["ROCBLAS_VERSION"]))
5220+
self.assertTrue(re.match(r'^\d+[a-z0-9.]+$', validators["ROCBLAS_VERSION"]))
52215221
self.assertTrue("HIPBLASLT_VERSION" in validators)
52225222
self.assertTrue(re.match(r'^\d+-[a-z0-9]+$', validators["HIPBLASLT_VERSION"]))
52235223

0 commit comments

Comments
 (0)