Skip to content

Commit 3db0ecd

Browse files
rename Jenkins CODEPATH buckets to gfx100x series
Signed-off-by: bogdan-petkovic <bogdan.petkovic@htecgroup.com>
1 parent 28619d9 commit 3db0ecd

1 file changed

Lines changed: 32 additions & 32 deletions

File tree

mlir/utils/jenkins/Jenkinsfile

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -655,19 +655,19 @@ String getLabelFromCodepath(String codepath) {
655655
} else {
656656
label = 'mlir && linux-mi350-1'
657657
}
658-
} else if (codepath == "gfx10x") {
658+
} else if (codepath == "gfx100x") {
659659
// For non-performance related testing, use both workstations (gfx1030w)
660660
// and server nodes (gfx1030)
661661
label = 'mlir && ( gfx1030w || gfx1030 )'
662662
} else if (codepath == "vanilla"){
663663
label = 'mlir'
664-
} else if (codepath == "gfx11x") {
664+
} else if (codepath == "gfx110x") {
665665
if (params.nightly || params.weekly) {
666666
label = 'mlir && gfx1100'
667667
} else {
668668
label = 'mlir && ( gfx1100 || gfx1101 )'
669669
}
670-
} else if (codepath == "gfx12x") {
670+
} else if (codepath == "gfx120x") {
671671
if (params.nightly || params.weekly) {
672672
label = 'mlir && gfx1201'
673673
} else {
@@ -759,7 +759,7 @@ void parameterSweep(String CONFIG, String sweepType = "default") {
759759
String attnCodepath = "auto"
760760
if (CONFIG == "mfma" || CONFIG == "gfx950") {
761761
attnCodepath = "mfma"
762-
} else if (CONFIG == "gfx10x" || CONFIG == "gfx11x" || CONFIG == "gfx12x") {
762+
} else if (CONFIG == "gfx100x" || CONFIG == "gfx110x" || CONFIG == "gfx120x") {
763763
attnCodepath = "wmma"
764764
}
765765
sh """python3 ./bin/attentionSweeps.py -j ${limit_lit_workers} --codepath ${attnCodepath} --log-failures --debug-fails"""
@@ -782,17 +782,17 @@ boolean shouldRunFromCodepath(String codepath) {
782782
if (codepath == "gfx950" && params.canXdlops && params.disable950 == false) {
783783
return true
784784
}
785-
// Run gfx10x on private nightly or weekly CI if it is not disabled
786-
if (params.canXdlops && (params.disableGfx10x == false) && (codepath == "gfx10x") &&
785+
// Run gfx100x on private nightly or weekly CI if it is not disabled
786+
if (params.canXdlops && (params.disableGfx100x == false) && (codepath == "gfx100x") &&
787787
(params.nightly || params.weekly)) {
788788
return true
789789
}
790-
// Run gfx11x on private CI if it is not disabled
791-
if (params.canXdlops && (params.disableGfx11x == false) && (codepath == "gfx11x")) {
790+
// Run gfx110x on private CI if it is not disabled
791+
if (params.canXdlops && (params.disableGfx110x == false) && (codepath == "gfx110x")) {
792792
return true
793793
}
794-
// Run gfx12x on private CI if it is not disabled
795-
if (params.canXdlops && (params.disableGfx12x == false) && (codepath == "gfx12x")) {
794+
// Run gfx120x on private CI if it is not disabled
795+
if (params.canXdlops && (params.disableGfx120x == false) && (codepath == "gfx120x")) {
796796
return true;
797797
}
798798
return false
@@ -813,12 +813,12 @@ boolean shouldRunFromChip(String chip) {
813813
case "gfx950":
814814
return params.disable950 == false && shouldRunFromCodepath("gfx950")
815815
case "gfx1030":
816-
return shouldRunFromCodepath("gfx10x")
816+
return shouldRunFromCodepath("gfx100x")
817817
case "gfx1100":
818-
return shouldRunFromCodepath("gfx11x")
818+
return shouldRunFromCodepath("gfx110x")
819819
case "gfx1200":
820820
case "gfx1201":
821-
return shouldRunFromCodepath("gfx12x")
821+
return shouldRunFromCodepath("gfx120x")
822822
}
823823
}
824824

@@ -840,7 +840,7 @@ void archivePerfDB() {
840840
}
841841

842842
boolean shouldRunBuildAndTest(String codepath) {
843-
// When default codepath is selected, we test mfma, gfx10x, gfx11x and gfx12x on
843+
// When default codepath is selected, we test mfma, gfx100x, gfx110x and gfx120x on
844844
// private CI and vanilla on public CI
845845
if (params.codepath == "default" && shouldRunFromCodepath(codepath))
846846
return true
@@ -851,9 +851,9 @@ boolean shouldRunBuildAndTest(String codepath) {
851851
if (params.codepath == "mfma") return true
852852
if (params.codepath == "vanilla") return true
853853
if (params.codepath == "gfx950" && params.disable950 == false) return true
854-
if (params.codepath == "gfx10x" && params.disableGfx10x == false) return true
855-
if (params.codepath == "gfx11x" && params.disableGfx11x == false) return true
856-
if (params.codepath == "gfx12x" && params.disableGfx12x == false) return true
854+
if (params.codepath == "gfx100x" && params.disableGfx100x == false) return true
855+
if (params.codepath == "gfx110x" && params.disableGfx110x == false) return true
856+
if (params.codepath == "gfx120x" && params.disableGfx120x == false) return true
857857
return false
858858
}
859859
}
@@ -994,17 +994,17 @@ pipeline {
994994

995995
// choose the codepath for testing
996996
choice(name: 'codepath',
997-
choices: ['default', 'mfma', 'gfx10x', 'gfx11x', 'gfx12x', 'vanilla', 'gfx950'],
997+
choices: ['default', 'mfma', 'gfx100x', 'gfx110x', 'gfx120x', 'vanilla', 'gfx950'],
998998
description: 'Choose the codepath to test')
999-
// option to disable gfx10x cells in case nodes are offline
1000-
booleanParam(name: 'disableGfx10x', defaultValue: true,
1001-
description: 'Disable testing on gfx10x')
1002-
// option to disable gfx11x cells in case nodes are offline
1003-
booleanParam(name: 'disableGfx11x', defaultValue: false,
1004-
description: 'Disable testing on gfx11x')
1005-
// option to disable gfx12x cells in case nodes are offline
1006-
booleanParam(name: 'disableGfx12x', defaultValue: false,
1007-
description: 'Disable testing on gfx12x')
999+
// option to disable gfx100x cells in case nodes are offline
1000+
booleanParam(name: 'disableGfx100x', defaultValue: true,
1001+
description: 'Disable testing on gfx100x')
1002+
// option to disable gfx110x cells in case nodes are offline
1003+
booleanParam(name: 'disableGfx110x', defaultValue: false,
1004+
description: 'Disable testing on gfx110x')
1005+
// option to disable gfx120x cells in case nodes are offline
1006+
booleanParam(name: 'disableGfx120x', defaultValue: false,
1007+
description: 'Disable testing on gfx120x')
10081008
booleanParam(name: 'disable90a', defaultValue: false,
10091009
description: 'Disable testing on gfx90a')
10101010
booleanParam(name: 'disable908', defaultValue: false,
@@ -1048,7 +1048,7 @@ pipeline {
10481048
axes {
10491049
axis {
10501050
name 'CODEPATH'
1051-
values 'vanilla', 'mfma', 'gfx10x', 'gfx950'
1051+
values 'vanilla', 'mfma', 'gfx100x', 'gfx950'
10521052
}
10531053
}
10541054
// One big scripted step per matrix row
@@ -1191,7 +1191,7 @@ pipeline {
11911191
axes {
11921192
axis {
11931193
name 'CODEPATH'
1194-
values 'mfma', 'vanilla', 'gfx10x', 'gfx11x', 'gfx12x', 'gfx950'
1194+
values 'mfma', 'vanilla', 'gfx100x', 'gfx110x', 'gfx120x', 'gfx950'
11951195
}
11961196
}
11971197
// One big scripted step per matrix row
@@ -1707,7 +1707,7 @@ PY
17071707
axes {
17081708
axis {
17091709
name 'CODEPATH'
1710-
values 'mfma', 'gfx10x', 'gfx12x', 'gfx950'
1710+
values 'mfma', 'gfx100x', 'gfx120x', 'gfx950'
17111711
}
17121712
}
17131713
// One big scripted step per matrix row
@@ -1778,7 +1778,7 @@ PY
17781778
// does not quantize attention ops leaving them in f32. Exclude
17791779
// attention from MLIR ops on RDNA for int8
17801780
def mlirOps = 'convolution,fused,dot,attention'
1781-
def mlirOpsInt8 = (CODEPATH == 'gfx10x' || CODEPATH == 'gfx12x')
1781+
def mlirOpsInt8 = (CODEPATH == 'gfx100x' || CODEPATH == 'gfx120x')
17821782
? 'convolution,fused,dot'
17831783
: 'convolution,fused,dot,attention'
17841784

@@ -1838,7 +1838,7 @@ PY
18381838
axes {
18391839
axis {
18401840
name 'CODEPATH'
1841-
values 'mfma', 'gfx12x', 'gfx950'
1841+
values 'mfma', 'gfx120x', 'gfx950'
18421842
}
18431843
}
18441844
// One big scripted step per matrix row

0 commit comments

Comments
 (0)