Skip to content

Commit 4b35d89

Browse files
authored
[ez][HUD] Put XPU workflow into it's own group (#7052)
Reason: Currently the xpu workflow is being put into the linux group, but the xpu workflow is only run periodically on main and is frequently broken, which makes the linux column on hud confusing since it will look like it's failing but it's just xpu XPU workflow isn't usually run on PRs usually so it doesn't affect many devs, so we've let the XPU team handle its failures at their own pace At what point do we start grouping by workflow instead of platform and other things in the job name?
1 parent 697ddae commit 4b35d89

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

torchci/lib/JobClassifierUtil.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ const GROUP_PARALLEL = "Parallel";
2828
const GROUP_DOCS = "Docs";
2929
const GROUP_LIBTORCH = "Libtorch";
3030
const GROUP_OTHER_VIABLE_STRICT_BLOCKING = "Other viable/strict blocking";
31+
const GROUP_XPU = "XPU";
3132
const GROUP_OTHER = "other";
3233

3334
// Jobs will be grouped with the first regex they match in this list
@@ -48,6 +49,10 @@ export const groups = [
4849
regex: /unstable/,
4950
name: GROUP_UNSTABLE,
5051
},
52+
{
53+
regex: /^xpu/,
54+
name: GROUP_XPU,
55+
},
5156
{
5257
regex: /inductor-periodic/,
5358
name: GROUP_INDUCTOR_PERIODIC,
@@ -156,6 +161,7 @@ const HUD_GROUP_SORTING = [
156161
GROUP_IOS,
157162
GROUP_MAC,
158163
GROUP_ROCM,
164+
GROUP_XPU,
159165
GROUP_XLA,
160166
GROUP_OTHER_VIABLE_STRICT_BLOCKING, // placed after the last group that tends to have viable/strict blocking jobs
161167
GROUP_PARALLEL,

0 commit comments

Comments
 (0)