Skip to content

Commit

Permalink
added count per iteration plot
Browse files Browse the repository at this point in the history
  • Loading branch information
AYadrov committed Oct 29, 2024
1 parent 4391cc7 commit e179028
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions infra/nightly.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ function perf {
python3 infra/ratio_plot.py -t "$REPORTDIR"/timeline.json -o "$REPORTDIR"
python3 infra/point_graph.py -t "$REPORTDIR"/timeline.json -o "$REPORTDIR"
python3 infra/histograms.py -t "$REPORTDIR"/timeline.json -o "$REPORTDIR"
python3 infra/cnt_per_iters_plot.py -t "$REPORTDIR"/timeline.json -o "$REPORTDIR"
cp profile.json "$REPORTDIR"/profile.json
cp profile.js "$REPORTDIR"/profile.js
}
Expand All @@ -71,6 +72,7 @@ function bench {
python3 infra/ratio_plot.py -t "$REPORTDIR"/timeline.json -o "$REPORTDIR"
python3 infra/point_graph.py -t "$REPORTDIR"/timeline.json -o "$REPORTDIR"
python3 infra/histograms.py -t "$REPORTDIR"/timeline.json -o "$REPORTDIR"
python3 infra/cnt_per_iters_plot.py -t "$REPORTDIR"/timeline.json -o "$REPORTDIR"
cp profile.json "$REPORTDIR"/profile.json
cp profile.js "$REPORTDIR"/profile.js
}
Expand Down
2 changes: 1 addition & 1 deletion infra/ratio_plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def tool_cmp2speed(x):
label='sollya')

ax.legend()
ax.set_xlabel("Truth uniform precision")
ax.set_xlabel("True uniform precision")
ax.set_ylabel("Ratio")
ax.yaxis.grid(True, linestyle='-', which='major', color='grey', alpha=0.3)
plt.savefig(args.path + "/ratio_plot_precision.png", format="png")
Expand Down
1 change: 1 addition & 0 deletions time.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,7 @@
(html-add-plot html-port "ratio_plot_iter.png")
(html-add-plot html-port "ratio_plot_precision.png")
(html-add-plot html-port "point_graph.png")
(html-add-plot html-port "cnt_per_iters_plot.png")
(html-add-histogram html-port "histogram_valid.png")
(html-add-histogram html-port "histogram_all.png"))

Expand Down

0 comments on commit e179028

Please sign in to comment.