Skip to content

Commit de8d37a

Browse files
authored
Automatically sort benchmarks (#7100)
Stacked PRs: * __->__#7100 --- --- --- ### Automatically sort benchmarks
1 parent 724c545 commit de8d37a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

torchci/components/layout/NavBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ function NavBar() {
126126
name: "Helion",
127127
href: "/benchmark/llms?repoName=pytorch%2Fhelion&benchmarkName=Helion+Benchmark",
128128
},
129-
];
129+
].sort((a, b) => a.name.localeCompare(b.name));
130130

131131
const devInfraDropdown = [
132132
{

0 commit comments

Comments
 (0)