Skip to content

Commit e179028

Browse files
committed
added count per iteration plot
1 parent 4391cc7 commit e179028

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

infra/nightly.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ function perf {
6262
python3 infra/ratio_plot.py -t "$REPORTDIR"/timeline.json -o "$REPORTDIR"
6363
python3 infra/point_graph.py -t "$REPORTDIR"/timeline.json -o "$REPORTDIR"
6464
python3 infra/histograms.py -t "$REPORTDIR"/timeline.json -o "$REPORTDIR"
65+
python3 infra/cnt_per_iters_plot.py -t "$REPORTDIR"/timeline.json -o "$REPORTDIR"
6566
cp profile.json "$REPORTDIR"/profile.json
6667
cp profile.js "$REPORTDIR"/profile.js
6768
}
@@ -71,6 +72,7 @@ function bench {
7172
python3 infra/ratio_plot.py -t "$REPORTDIR"/timeline.json -o "$REPORTDIR"
7273
python3 infra/point_graph.py -t "$REPORTDIR"/timeline.json -o "$REPORTDIR"
7374
python3 infra/histograms.py -t "$REPORTDIR"/timeline.json -o "$REPORTDIR"
75+
python3 infra/cnt_per_iters_plot.py -t "$REPORTDIR"/timeline.json -o "$REPORTDIR"
7476
cp profile.json "$REPORTDIR"/profile.json
7577
cp profile.js "$REPORTDIR"/profile.js
7678
}

infra/ratio_plot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def tool_cmp2speed(x):
8282
label='sollya')
8383

8484
ax.legend()
85-
ax.set_xlabel("Truth uniform precision")
85+
ax.set_xlabel("True uniform precision")
8686
ax.set_ylabel("Ratio")
8787
ax.yaxis.grid(True, linestyle='-', which='major', color='grey', alpha=0.3)
8888
plt.savefig(args.path + "/ratio_plot_precision.png", format="png")

time.rkt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -403,6 +403,7 @@
403403
(html-add-plot html-port "ratio_plot_iter.png")
404404
(html-add-plot html-port "ratio_plot_precision.png")
405405
(html-add-plot html-port "point_graph.png")
406+
(html-add-plot html-port "cnt_per_iters_plot.png")
406407
(html-add-histogram html-port "histogram_valid.png")
407408
(html-add-histogram html-port "histogram_all.png"))
408409

0 commit comments

Comments
 (0)