-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #102 from nghi01/slurm
Adding instructions for scheduling with SLURM and sample SLURM script
- Loading branch information
Showing
2 changed files
with
62 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/usr/bin/bash | ||
#source .bashrc | ||
|
||
#SBATCH --partition=8core | ||
#SBATCH --nodelist=node[48,50,51] | ||
#SBATCH --time=20:00:00 | ||
|
||
cd $HOME | ||
cd ODM/NodeODM/ | ||
|
||
#Launched on Node 48 | ||
srun --nodes=1 apptainer run --writable node/ & | ||
|
||
#Launch on node 50 | ||
srun --nodes=1 apptainer run --writable node/ & | ||
|
||
#Launch on node 51 | ||
srun --nodes=1 apptainer run --writable node/ & | ||
wait |