From 7e4abd6319348785289c6a042019537787ad1414 Mon Sep 17 00:00:00 2001 From: "petros.anastasiadis" Date: Tue, 3 Oct 2017 15:47:20 +0300 Subject: [PATCH] Update 03/10/2017 - gitignore changescd --- .gitignore | 3 --- Outputs/README.md | 3 +-- Outputs/Runner.sh | 9 +++++---- 3 files changed, 6 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index 517dd22..92937d9 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 6a26005..fd693ba 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 b76e067..f687191 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 -- GitLab