diff --git a/.gitignore b/.gitignore index 517dd2259591f00e9f9e5c9569fbe6898ddb77ee..92937d98af8f13c2fc9e76ec511209346a7ec9ed 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,3 @@ **/*.out **/*.err **/*.debug -**/*.compute -**/*.taskp - diff --git a/Outputs/README.md b/Outputs/README.md index 6a260057a73ecedd921377a071d7c102a188f97b..fd693baaf4749c9397d632e42882055de8789790 100644 --- a/Outputs/README.md +++ b/Outputs/README.md @@ -1,2 +1 @@ -# A folder containing program outputs and error checking files (Debug) - +# A folder for program Running/Debugging diff --git a/Outputs/Runner.sh b/Outputs/Runner.sh index b76e06760aa542c63478f6d5794a3e6747d856fb..f687191890f0a7e193b3af696a5b2957354078e9 100755 --- a/Outputs/Runner.sh +++ b/Outputs/Runner.sh @@ -1,10 +1,11 @@ # Run all files. Must update if changes are made in directory tree +submit=sbatch cd ../Serial -sbatch Serial.slurm 25000 +$submit Serial.slurm 25000 cd ../OpenMP -sbatch OpenMP.slurm 25000 +$submit OpenMP.slurm 25000 cd ../GPUs -sbatch GPU.slurm 25000 +$submit GPU.slurm 25000 cd ../MPI -sbatch MPI.slurm 25000 +$submit MPI.slurm 25000