Skip to content
Snippets Groups Projects
Commit 60b7f205 authored by Marie Weiel's avatar Marie Weiel :zap:
Browse files

make SBATCH parameters consistent

parent 08baef7c
No related branches found
No related tags found
No related merge requests found
#!/bin/bash #!/bin/bash
#SBATCH --job-name=kmeans_cpu # job name #SBATCH --job-name=kmeans_cpu # Job name
#SBATCH --partition=single # queue for resource allocation #SBATCH --partition=single # Queue for resource allocation
#SBATCH --time=30:00 # wall-clock time limit #SBATCH --time=30:00 # Wall-clock time limit
#SBATCH --mem=40000 # memory #SBATCH --ntasks=1 # Number of tasks
#SBATCH --nodes=1 # number of nodes to be used #SBATCH --cpus-per-task=40 # Number of CPUs per tasks
#SBATCH --mail-type=ALL # Notify user by email when certain event types occur. #SBATCH --mail-type=ALL # Notify user by email when certain event types occur.
export VENVDIR=~/scai-venv # Export path to your virtual environment. export VENVDIR=~/scai-venv # Export path to your virtual environment.
......
...@@ -4,7 +4,6 @@ ...@@ -4,7 +4,6 @@
#SBATCH --partition=dev_multiple # queue for resource allocation #SBATCH --partition=dev_multiple # queue for resource allocation
#SBATCH --nodes=4 # number of nodes to be used #SBATCH --nodes=4 # number of nodes to be used
#SBATCH --time=30:00 # wall-clock time limit #SBATCH --time=30:00 # wall-clock time limit
#SBATCH --mem=40000 # memory per node
#SBATCH --cpus-per-task=40 # number of CPUs required per MPI task #SBATCH --cpus-per-task=40 # number of CPUs required per MPI task
#SBATCH --ntasks-per-node=1 # maximum count of tasks per node #SBATCH --ntasks-per-node=1 # maximum count of tasks per node
#SBATCH --mail-type=ALL # Notify user by email when certain event types occur. #SBATCH --mail-type=ALL # Notify user by email when certain event types occur.
......
...@@ -4,7 +4,6 @@ ...@@ -4,7 +4,6 @@
#SBATCH --partition=dev_multiple # queue for resource allocation #SBATCH --partition=dev_multiple # queue for resource allocation
#SBATCH --nodes=4 # number of nodes to be used #SBATCH --nodes=4 # number of nodes to be used
#SBATCH --time=30:00 # wall-clock time limit #SBATCH --time=30:00 # wall-clock time limit
#SBATCH --mem=40000 # memory per node
#SBATCH --cpus-per-task=40 # number of CPUs required per MPI task #SBATCH --cpus-per-task=40 # number of CPUs required per MPI task
#SBATCH --ntasks-per-node=1 # maximum count of tasks per node #SBATCH --ntasks-per-node=1 # maximum count of tasks per node
#SBATCH --mail-type=ALL # Notify user by email when certain event types occur. #SBATCH --mail-type=ALL # Notify user by email when certain event types occur.
......
...@@ -4,7 +4,6 @@ ...@@ -4,7 +4,6 @@
#SBATCH --partition=dev_multiple # queue for resource allocation #SBATCH --partition=dev_multiple # queue for resource allocation
#SBATCH --nodes=4 # number of nodes to be used #SBATCH --nodes=4 # number of nodes to be used
#SBATCH --time=30:00 # wall-clock time limit #SBATCH --time=30:00 # wall-clock time limit
#SBATCH --mem=40000 # memory per node
#SBATCH --cpus-per-task=40 # number of CPUs required per MPI task #SBATCH --cpus-per-task=40 # number of CPUs required per MPI task
#SBATCH --ntasks-per-node=1 # maximum count of tasks per node #SBATCH --ntasks-per-node=1 # maximum count of tasks per node
#SBATCH --mail-type=ALL # Notify user by email when certain event types occur. #SBATCH --mail-type=ALL # Notify user by email when certain event types occur.
......
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