-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_all_tests.sh
28 lines (25 loc) · 2.61 KB
/
run_all_tests.sh
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
26
27
28
echo "Starting Square Snapshot Run 1"
cargo run -r -- --fname=testfiles/speech.wav --scene=4 --rays=10000000 --scaling-factor=100 --outfile=cube_snapshot_1.wav --snapshot-method --single-ir --irfile=cube_snapshot_1.csv > cube_snapshot_1.log
echo "Starting Square Snapshot Run 2"
cargo run -r -- --fname=testfiles/speech.wav --scene=4 --rays=10000000 --scaling-factor=100 --outfile=cube_snapshot_2.wav --snapshot-method --single-ir --irfile=cube_snapshot_2.csv > cube_snapshot_2.log
echo "Starting Square Snapshot Run 3"
cargo run -r -- --fname=testfiles/speech.wav --scene=4 --rays=10000000 --scaling-factor=100 --outfile=cube_snapshot_3.wav --snapshot-method --single-ir --irfile=cube_snapshot_3.csv > cube_snapshot_3.log
echo "Starting Square Interp Run 1"
cargo run -r -- --fname=testfiles/speech.wav --scene=4 --rays=10000000 --scaling-factor=100 --outfile=cube_interp_1.wav --single-ir --irfile=cube_interp_1.csv > cube_interp_1.log
echo "Starting Square Interp Run 2"
cargo run -r -- --fname=testfiles/speech.wav --scene=4 --rays=10000000 --scaling-factor=100 --outfile=cube_interp_2.wav --single-ir --irfile=cube_interp_2.csv > cube_interp_2.log
echo "Starting Square Interp Run 3"
cargo run -r -- --fname=testfiles/speech.wav --scene=4 --rays=10000000 --scaling-factor=100 --outfile=cube_interp_3.wav --single-ir --irfile=cube_interp_3.csv > cube_interp_3.log
echo "Starting L Snapshot Run 1"
cargo run -r -- --fname=testfiles/speech.wav --scene=5 --rays=10000000 --scaling-factor=100 --outfile=l_snapshot_1.wav --snapshot-method --single-ir --irfile=l_snapshot_1.csv > l_snapshot_1.log
echo "Starting L Snapshot Run 2"
cargo run -r -- --fname=testfiles/speech.wav --scene=5 --rays=10000000 --scaling-factor=100 --outfile=l_snapshot_2.wav --snapshot-method --single-ir --irfile=l_snapshot_2.csv > l_snapshot_2.log
echo "Starting L Snapshot Run 3"
cargo run -r -- --fname=testfiles/speech.wav --scene=5 --rays=10000000 --scaling-factor=100 --outfile=l_snapshot_3.wav --snapshot-method --single-ir --irfile=l_snapshot_3.csv > l_snapshot_3.log
echo "Starting L Interp Run 1"
cargo run -r -- --fname=testfiles/speech.wav --scene=5 --rays=10000000 --scaling-factor=100 --outfile=l_interp_1.wav --single-ir --irfile=l_interp_1.csv > l_interp_1.log
echo "Starting L Interp Run 2"
cargo run -r -- --fname=testfiles/speech.wav --scene=5 --rays=10000000 --scaling-factor=100 --outfile=l_interp_2.wav --single-ir --irfile=l_interp_2.csv > l_interp_2.log
echo "Starting L Interp Run 3"
cargo run -r -- --fname=testfiles/speech.wav --scene=5 --rays=10000000 --scaling-factor=100 --outfile=l_interp_3.wav --single-ir --irfile=l_interp_3.csv > l_interp_3.log
echo "All done!"