File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -29,10 +29,15 @@ const GROUP_DOCS = "Docs";
2929const GROUP_LIBTORCH = "Libtorch" ;
3030const GROUP_OTHER_VIABLE_STRICT_BLOCKING = "Other viable/strict blocking" ;
3131const GROUP_XPU = "XPU" ;
32+ const GROUP_VLLM = "vLLM" ;
3233const GROUP_OTHER = "other" ;
3334
3435// Jobs will be grouped with the first regex they match in this list
3536export const groups = [
37+ {
38+ regex : / v l l m / ,
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 ,
You can’t perform that action at this time.
0 commit comments