Skip to content

Commit 7171574

Browse files
committed
(re-)add changes to benchmarks scripts for the html tables
1 parent 1f58510 commit 7171574

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

examples/benchmarks/incremental-KaSa/script_compare_working_set_size

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
# or in output/experiments_output_compare_ws_plot.png (plot)
1212

1313
DEBUG=false
14-
VERBOSE=true
15-
INSTALL_DEPS=true
14+
VERBOSE=false
15+
INSTALL_DEPS=false
1616

1717
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
1818
cd "${SCRIPT_DIR}/../../.."
@@ -255,6 +255,7 @@ echo
255255
echo "📝 The mean of all runtimes can be found in: $OUTPUT_MEAN_RUNTIMES"
256256

257257
OUTPUT_LATEX_RUNTIMES="${OUTPUT_DIR}experiments_output_compare_ws.tex"
258+
OUTPUT_HTML_RUNTIMES="${OUTPUT_DIR}experiments_output_compare_ws.html"
258259

259260
cmd=(python3
260261
"${SCRIPT_DIR}/latex_table_compare_ws.py"
@@ -267,6 +268,7 @@ fi
267268
{ ${cmd[@]}; }
268269

269270
echo "📊 The latex table of the runtimes can be found in: $OUTPUT_LATEX_RUNTIMES"
271+
echo "🕸️ The html table of the runtimes can be found in: $OUTPUT_HTML_RUNTIMES"
270272

271273
cmd=(python3
272274
"${SCRIPT_DIR}/plot.py" "${OUTPUT_DIR}experiments_output_mean.csv" "${OUTPUT_DIR}runtimes"

examples/benchmarks/incremental-KaSa/script_disable_and_add_rules

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,8 +361,9 @@ echo
361361
echo "📝 The mean of all runtimes can be found in: $OUTPUT_MEAN_RUNTIMES"
362362

363363
OUTPUT_LATEX_RUNTIMES="${OUTPUT_DIR}experiments_output.tex"
364+
OUTPUT_HTML_RUNTIMES="${OUTPUT_DIR}experiments_output.html"
364365

365-
# draw a latex table with the runtimes
366+
# draw a latex and a html table with the runtimes
366367

367368
cmd=(python3
368369
"${SCRIPT_DIR}/latex_table_of_runtimes.py"
@@ -375,5 +376,6 @@ fi
375376
{ ${cmd[@]}; }
376377

377378
echo "📊 The latex table of the runtimes can be found in: $OUTPUT_LATEX_RUNTIMES"
379+
echo "🕸️ The html table of the runtimes can be found in: $OUTPUT_HTML_RUNTIMES"
378380

379381
deactivate

0 commit comments

Comments
 (0)