--- /dev/null
+[submodule "gwion-benchmark"]
+ path = gwion-benchmark
+ url = https://github.com/fennecdjay/gwion-benchmark
## test
<table><tr><td align="center">
-@hide for a in $(find benchmark/results -type f -name "*.png"); do echo "<a href=:gwion:><img class=\"zoom\" src=\"./$(echo "$a" | sed 's/benchmark\/results/assets/')\" width=\"352px\"></a>"; done
+@hide bash scripts/list_benchmarks.sh
</td></tr></table>
--- /dev/null
+Subproject commit 1cf2cf3600dac43c02ca16a209d46e2ce5d33dfc
--- /dev/null
+for a in $(find gwion-benchmark/png -type f -name "*.png")
+do
+ png_url="https://github.com/fennecdjay/gwion-benchmark/blob/results/png/$(basename $a)"
+ test_url="https://github.com/fennecdjay/gwion-benchmark/blob/master/src/$(basename $a .png).gw"
+ echo "<a href=\"$test_url\"><img class=\"zoom\" src=\"$png_url\" width=\"352px\"></a>"
+done