Skip to content
Draft
Show file tree
Hide file tree
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
12 changes: 11 additions & 1 deletion torchci/components/benchmark_v3/configs/configurations.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,12 @@ export const BENCHMARK_ID_MAPPING: Record<string, BenchmarkIdMappingItem> = {
repoName: "pytorch/helion",
benchmarkName: "Helion Benchmark",
},
torchao_micro_api_benchmark: {
id: "torchao_micro_api_benchmark",
repoName: "pytorch/ao",
benchmarkName: "micro-benchmark api",
},
};

/**
* A helper function to get benchmark id from report id
* @param reportId
Expand Down Expand Up @@ -119,6 +123,12 @@ export const BENCHMARK_CATEGORIES: BenchmarkCategoryGroup[] = [
route:
"/benchmark/llms?repoName=pytorch%2Fao&benchmarkName=micro-benchmark+api",
info: "Powered by [code](https://github.com/pytorch/ao/blob/main/docs/source/benchmarking_api_guide.md)",
actions: [
{
label: "New dashboard (WIP)",
href: "/benchmark/v3/dashboard/torchao_micro_api_benchmark",
},
],
},
],
},
Expand Down
1 change: 1 addition & 0 deletions torchci/pages/api/benchmark/get_time_series.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ async function getBenchmarkTimeSeriesData(
);
case "pytorch_operator_microbenchmark":
case "pytorch_helion":
case "torchao_micro_api_benchmark":
return await getGenernalBenchmarkTimeSeries(
query_params,
formats,
Expand Down