Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions torchci/components/benchmark/compilers/common.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ export const DISPLAY_NAMES_TO_DEVICE_NAMES: { [k: string]: string } = {
"cpu (aarch64)": "cpu",
"rocm (mi300x)": "rocm",
mps: "mps",
xpu: "xpu",
};
export const DISPLAY_NAMES_TO_ARCH_NAMES: { [k: string]: string } = {
"cuda (a100)": "a100",
Expand All @@ -78,6 +79,7 @@ export const DISPLAY_NAMES_TO_ARCH_NAMES: { [k: string]: string } = {
// TODO (huydhn): Figure out a way to get the GPU name for ROCm
"rocm (mi300x)": "",
mps: "",
xpu: "",
};
export const DISPLAY_NAMES_TO_WORKFLOW_NAMES: { [k: string]: string } = {
"cuda (a100)": "inductor-A100-perf-nightly",
Expand All @@ -88,6 +90,7 @@ export const DISPLAY_NAMES_TO_WORKFLOW_NAMES: { [k: string]: string } = {
"cpu (aarch64)": "inductor-perf-nightly-aarch64",
rocm: "inductor-perf-nightly-rocm",
mps: "inductor-perf-nightly-macos",
xpu: "inductor-perf-nightly-xpu",
};

export const DEFAULT_HIGHLIGHT_KEY = "none";
Expand Down