Skip to content

Commit

Permalink
change confusing table
Browse files Browse the repository at this point in the history
  • Loading branch information
oflatt committed Feb 11, 2025
1 parent be64134 commit 513720f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
2 changes: 0 additions & 2 deletions infra/graphs.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,8 +256,6 @@ def make_macros(profile, benchmark_suites, output_file):
# report the number of benchmarks in the profile
out.write(format_latex_macro("NumBenchmarksAllSuites", len(dedup([b.get('benchmark') for b in profile]))))






Expand Down
9 changes: 1 addition & 8 deletions infra/nightly-resources/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,17 +115,10 @@ function getDataForBenchmark(benchmark) {
const rowData = {
runMethod: row.runMethod,
mean: { class: "", value: tryRound(mean(cycles)) },
meanVsBaseline: getDifference(cycles, comparisonCycles, mean),
meanVsOtherBranch: getDifference(cycles, comparisonCycles, mean),
min: { class: "", value: tryRound(min_cycles(cycles)) },
minVsBaseline: getDifference(cycles, comparisonCycles, min_cycles),
max: { class: "", value: tryRound(max_cycles(cycles)) },
maxVsBaseline: getDifference(cycles, comparisonCycles, max_cycles),
median: { class: "", value: tryRound(median_cycles(cycles)) },
medianVsBaseline: getDifference(
cycles,
comparisonCycles,
median_cycles,
),
stddev: { class: "", value: tryRound(stddev(cycles)) },
eggccCompileTimeSecs: {
class: "",
Expand Down

0 comments on commit 513720f

Please sign in to comment.