This commit is contained in:
Alejandro Rodriguez Salamanca 2017-07-07 14:31:22 +02:00
Родитель 8b44ad6318
Коммит fe16b7370a
2 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -399,9 +399,10 @@ run-seq() {
# Run tests in parallel # Run tests in parallel
run() { run() {
local spec_regex=${1:-'^r-'} # grep -E format on the spec local spec_regex=${1:-'^r-'} # grep -E format on the spec
local instances=${2:-1}
shift shift
time _run-tests $REGTEST_SPEC $spec_regex T $@ time _run-tests $REGTEST_SPEC $spec_regex T python $instances
} }
# Run tests in parallel (7+ minutes on 8 cores) # Run tests in parallel (7+ minutes on 8 cores)

Просмотреть файл

@ -70,22 +70,27 @@ PLOTS = """ \
<h2>Plots</h2> <h2>Plots</h2>
<h3 style="text-align: center">Total variation distance</h3>
<p style="text-align: center"> <p style="text-align: center">
<img src="plots/tv.png"/> <img src="plots/tv.png"/>
</p> </p>
<h3 style="text-align: center">False negative rate</h3>
<p style="text-align: center"> <p style="text-align: center">
<img src="plots/fnr.png"/> <img src="plots/fnr.png"/>
</p> </p>
<h3 style="text-align: center">False positive rate</h3>
<p style="text-align: center"> <p style="text-align: center">
<img src="plots/fpr.png"/> <img src="plots/fpr.png"/>
</p> </p>
<h3 style="text-align: center">Allocated mass</h3>
<p style="text-align: center"> <p style="text-align: center">
<img src="plots/am.png"/> <img src="plots/am.png"/>
</p> </p>
<h3 style="text-align: center">Time</h3>
<p style="text-align: center"> <p style="text-align: center">
<img src="plots/time.png"/> <img src="plots/time.png"/>
</p> </p>