Skip to content

Commit ebb706a

Browse files
authored
[ez] Add vLLM group on HUD (#7148)
To group vLLM jobs into one group, it's important but not viable/strict blocking --------- Signed-off-by: Huy Do <huydhn@gmail.com>
1 parent 3b1fe16 commit ebb706a

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

torchci/lib/JobClassifierUtil.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,15 @@ const GROUP_DOCS = "Docs";
2929
const GROUP_LIBTORCH = "Libtorch";
3030
const GROUP_OTHER_VIABLE_STRICT_BLOCKING = "Other viable/strict blocking";
3131
const GROUP_XPU = "XPU";
32+
const GROUP_VLLM = "vLLM";
3233
const GROUP_OTHER = "other";
3334

3435
// Jobs will be grouped with the first regex they match in this list
3536
export const groups = [
37+
{
38+
regex: /vllm/,
39+
name: GROUP_VLLM,
40+
},
3641
{
3742
// Weird regex because some names are too long and getting cut off
3843
// TODO: figure out a better way to name the job or filter them
@@ -164,6 +169,7 @@ const HUD_GROUP_SORTING = [
164169
GROUP_XPU,
165170
GROUP_XLA,
166171
GROUP_OTHER_VIABLE_STRICT_BLOCKING, // placed after the last group that tends to have viable/strict blocking jobs
172+
GROUP_VLLM,
167173
GROUP_PARALLEL,
168174
GROUP_LIBTORCH,
169175
GROUP_ANDROID,

0 commit comments

Comments
 (0)