Skip to content

Commit 75be71c

Browse files
Remove fp8 check on nightly CI. (#1789)
Remove fp8 check on nightly CI because it is not supported inside the MIOpen driver.
1 parent 3158264 commit 75be71c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mlir/utils/performance/perfRunner.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ def getConvConfigurations(fileName):
277277

278278
# Skip unsupported datatypes
279279
if datatype == 'convfp8':
280-
unsupported_chips = {'gfx908', 'gfx90a', 'gfx1030', 'gfx1101'}
280+
unsupported_chips = {'gfx908', 'gfx90a', 'gfx942', 'gfx1030', 'gfx1101'}
281281
if getChip() in unsupported_chips:
282282
continue
283283

@@ -577,7 +577,7 @@ def getGemmConfigurations(fileName, dataTypes=DATA_TYPES_GEMM, outDataTypeMap=OU
577577

578578
# Skip unsupported datatypes
579579
if datatype == 'fp8':
580-
unsupported_chips = {'gfx908', 'gfx90a', 'gfx1030', 'gfx1101'}
580+
unsupported_chips = {'gfx908', 'gfx90a', 'gfx942', 'gfx1030', 'gfx1101'}
581581
if getChip() in unsupported_chips:
582582
continue
583583

0 commit comments

Comments
 (0)