Skip to content
Snippets Groups Projects
Commit ba67eb78 authored by Guilherme Pantoja Calandrini de Azevedo Junior's avatar Guilherme Pantoja Calandrini de Azevedo Junior
Browse files

the --cpu option maybe deprecated.

I got the following error: 
sbatch: option '--cpu' is ambiguous; possibilities: '--cpu-freq' '--cpus-per-task' '--cpus-per-gpu'
parent 220d81f0
No related branches found
No related tags found
2 merge requests!687Automated merge from preview to main,!683the --cpu option maybe deprecated.
...@@ -326,12 +326,12 @@ components by a line containing the directive `"#SBATCH hetjob`. ...@@ -326,12 +326,12 @@ components by a line containing the directive `"#SBATCH hetjob`.
#!/bin/bash #!/bin/bash
#SBATCH --ntasks 1 #SBATCH --ntasks 1
#SBATCH --cpus 4 #SBATCH --cpus-per-task 4
#SBATCH --partition <partition> #SBATCH --partition <partition>
#SBATCH --mem=200G #SBATCH --mem=200G
#SBATCH hetjob # required to separate groups #SBATCH hetjob # required to separate groups
#SBATCH --ntasks 8 #SBATCH --ntasks 8
#SBATCH --cpus 1 #SBATCH --cpus-per-task 1
#SBATCH --gres=gpu:8 #SBATCH --gres=gpu:8
#SBATCH --mem=80G #SBATCH --mem=80G
#SBATCH --partition <partition> #SBATCH --partition <partition>
......
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