-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmake_index.sh
More file actions
executable file
·25 lines (23 loc) · 898 Bytes
/
make_index.sh
File metadata and controls
executable file
·25 lines (23 loc) · 898 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/sh
WORKFLOWS="lnni examol montage-base montage-groups rstriphoton dv5"
echo "<table>"
for workflow in ${WORKFLOWS}
do
echo "<tr>"
echo "<td><h2>$workflow</h2>"
echo "<ul>"
for file in debug taskgraph transactions performance
do
echo "<li><a href=examples/${workflow}/vine-logs/${file}>$file</a>"
done
for type in performance.tasks performance.tasks-accum performance.workers performance.workers-accum performance.workers-disk
do
echo "<td><a href=examples/${workflow}/plots/${type}.png><img src=examples/${workflow}/plots/${type}.png width=250>"
done
echo "<tr><td>"
for type in performance.time-manager performance.time-workers performance.transfer performance.times-stacked txn-workers
do
echo "<td><a href=examples/${workflow}/plots/${type}.png><img src=examples/${workflow}/plots/${type}.png width=250>"
done
done
echo "</table>"