From 848fa6e9eb89be8955b8c8cf61bff2a6400e3a10 Mon Sep 17 00:00:00 2001 From: Yang Wang Date: Thu, 2 Oct 2025 10:40:04 -0700 Subject: [PATCH 1/3] add config --- .../v3/components/benchmarkList/BenchmarkCategoryCard.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/torchci/components/benchmark/v3/components/benchmarkList/BenchmarkCategoryCard.tsx b/torchci/components/benchmark/v3/components/benchmarkList/BenchmarkCategoryCard.tsx index 85c6e7b032..78f233f9fc 100644 --- a/torchci/components/benchmark/v3/components/benchmarkList/BenchmarkCategoryCard.tsx +++ b/torchci/components/benchmark/v3/components/benchmarkList/BenchmarkCategoryCard.tsx @@ -15,6 +15,7 @@ import { Typography, } from "@mui/material"; import { Box } from "@mui/system"; +import { wrap } from "module"; import Link from "next/link"; import ReactMarkdown from "react-markdown"; From e1c081230d18de21e65b546fe50803c3229a96b3 Mon Sep 17 00:00:00 2001 From: Yang Wang Date: Wed, 8 Oct 2025 19:33:37 -0700 Subject: [PATCH 2/3] add config --- .../v3/components/benchmarkList/BenchmarkCategoryCard.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/torchci/components/benchmark/v3/components/benchmarkList/BenchmarkCategoryCard.tsx b/torchci/components/benchmark/v3/components/benchmarkList/BenchmarkCategoryCard.tsx index 78f233f9fc..85c6e7b032 100644 --- a/torchci/components/benchmark/v3/components/benchmarkList/BenchmarkCategoryCard.tsx +++ b/torchci/components/benchmark/v3/components/benchmarkList/BenchmarkCategoryCard.tsx @@ -15,7 +15,6 @@ import { Typography, } from "@mui/material"; import { Box } from "@mui/system"; -import { wrap } from "module"; import Link from "next/link"; import ReactMarkdown from "react-markdown"; From b4c0c47879c59aadaeaefd2bcb54fce68b013e4b Mon Sep 17 00:00:00 2001 From: Yang Wang Date: Fri, 10 Oct 2025 15:32:14 -0700 Subject: [PATCH 3/3] add config --- .../api_helper/compilers/get_compiler_benchmark_data.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/torchci/lib/benchmark/api_helper/compilers/get_compiler_benchmark_data.ts b/torchci/lib/benchmark/api_helper/compilers/get_compiler_benchmark_data.ts index e075d4013f..d9a4cfec42 100644 --- a/torchci/lib/benchmark/api_helper/compilers/get_compiler_benchmark_data.ts +++ b/torchci/lib/benchmark/api_helper/compilers/get_compiler_benchmark_data.ts @@ -118,7 +118,7 @@ async function getCompilerDataFromClickhouse(inputparams: any): Promise { queryParams ); } catch (err: any) { - throw Error("(clickhouse query issue) ", err.message); + throw Error(`(clickhouse query issue) ${err.message}`); } const end = Date.now();