Skip to content
Snippets Groups Projects
Commit e00e8455 authored by Philipp Gschwandtner's avatar Philipp Gschwandtner
Browse files

Fix line endings in job script

parent b932572f
No related branches found
No related tags found
No related merge requests found
#!/bin/bash #!/bin/bash
# Execute job in the partition "lva" unless you have special requirements. # Execute job in the partition "lva" unless you have special requirements.
#SBATCH --partition=lva #SBATCH --partition=lva
# Name your job to be able to identify it later # Name your job to be able to identify it later
#SBATCH --job-name test #SBATCH --job-name test
# Redirect output stream to this file # Redirect output stream to this file
#SBATCH --output=output.log #SBATCH --output=output.log
# Maximum number of tasks (=processes) to start in total # Maximum number of tasks (=processes) to start in total
#SBATCH --ntasks=8 #SBATCH --ntasks=8
# Maximum number of tasks (=processes) to start per node # Maximum number of tasks (=processes) to start per node
#SBATCH --ntasks-per-node=8 #SBATCH --ntasks-per-node=8
# Enforce exclusive node allocation, do not share with other jobs # Enforce exclusive node allocation, do not share with other jobs
#SBATCH --exclusive #SBATCH --exclusive
/bin/hostname /bin/hostname
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