Skip to content

Commit 9a82cb0

Browse files
committed
addid
1 parent 470669f commit 9a82cb0

3 files changed

Lines changed: 4 additions & 9 deletions

File tree

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,6 @@ aws/tools/cleanup-ssm/Cargo.lock
6969

7070
# These are backup files generated by rustfmt
7171
aws/tools/cleanup-ssm/**/*.rs.bk
72-
<<<<<<< Updated upstream
73-
=======
7472

7573
# Remove the python version file from pyenv
7674
.python-version
77-
>>>>>>> Stashed changes

torchci/components/benchmark/compilers/SummaryGraphPanel.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,6 @@ function SuiteGraphPanel({
8888
JSON.stringify(queryParamsWithSuite)
8989
)}`;
9090

91-
console.log("url params", queryParamsWithSuite);
92-
9391
let { data, error } = useSWR(url, fetcher, {
9492
refreshInterval: 60 * 60 * 1000, // refresh every hour
9593
});
@@ -238,8 +236,6 @@ function SuiteGraphPanel({
238236
);
239237
});
240238

241-
console.log("peak Memory",peakMemory)
242-
243239
const peakMemorySeries = seriesWithInterpolatedTimes(
244240
peakMemory,
245241
startTime,

torchci/lib/benchmark/api_helper/compilers/precompute.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import {
22
computeGeomean,
33
computeMemoryCompressionRatio,
44
computePassrate,
5-
computePeakMemoryUsage,
65
convertToCompilerPerformanceData,
76
getPassingModels,
87
} from "lib/benchmark/compilerUtils";
@@ -25,7 +24,10 @@ export async function getCompilerBenchmarkData(inputparams: any) {
2524
console.log("time to get data", end - start);
2625

2726
const startc = Date.now();
28-
const commits = await queryClickhouseSaved(BENCNMARK_COMMIT_NAME, inputparams);
27+
const commits = await queryClickhouseSaved(
28+
BENCNMARK_COMMIT_NAME,
29+
inputparams
30+
);
2931
const endc = Date.now();
3032
console.log("time to get commit data", endc - startc);
3133
const commitMap = toCommitRowMap(commits);

0 commit comments

Comments
 (0)