benchmarks_game/run.sh
#!/bin/bash
source ../util.sh
(record_benchmark "binary_trees" "binary_trees.log.txt" "" || true)
(record_benchmark "binary_trees" "binary_trees.log.txt" "-useGC" || true)
(record_benchmark "fannkuch" "fannkuch.log.txt" "" || true)
(record_benchmark "fannkuch" "fannkuch.log.txt" "-useGC" || true)
(record_benchmark "fasta" "fasta.log.txt" "" || true)
(record_benchmark "fasta" "fasta.log.txt" "-useGC" || true)
(record_benchmark "nbody_marray" "nbody_marray.log.txt" "" || true)
(record_benchmark "nbody_marray" "nbody_marray.log.txt" "-useGC" || true)
(record_benchmark "nbody" "nbody.log.txt" "" || true)
(record_benchmark "nbody" "nbody.log.txt" "-useGC" || true)
last changed: 2023-11-14