Skip to content
Snippets Groups Projects
Commit a661abfb authored by Dominic Kempf's avatar Dominic Kempf
Browse files

Add a script to execute the tests

parent 30eaba26
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
# Arguments: Number of runs for the timings (defaults to 5)
# Run the opcount executables
./app_poisson_dg_deg2_opcount app_poisson_dg_deg2_opcount.ini
./app_poisson_dg_deg3_opcount app_poisson_dg_deg3_opcount.ini
./app_poisson_dg_deg4_opcount app_poisson_dg_deg4_opcount.ini
./app_poisson_dg_deg5_opcount app_poisson_dg_deg5_opcount.ini
# Run the timing executables
COUNT=0
while [ $COUNT -lt ${1:-5} ]; do
./app_poisson_dg_deg2_nonopcount app_poisson_dg_deg2_nonopcount.ini
./app_poisson_dg_deg3_nonopcount app_poisson_dg_deg3_nonopcount.ini
./app_poisson_dg_deg4_nonopcount app_poisson_dg_deg4_nonopcount.ini
./app_poisson_dg_deg5_nonopcount app_poisson_dg_deg5_nonopcount.ini
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment