When using the split chunk statements, the chunk respresentation or count is a must. You are duplicating the ncpus request twice which is not a correct syntax
#PBS -l select=1:ncpus=1+1:ncpus=3
request specifies the job needs 1 chunk with 1 cpu and another chunk with 3 cpus
this might be used in case one node has 1 cpu free and another node has 3 cpus free.
If you could let us know what you are trying to achieve that would be helpful ?
@olderandcolder I would definitely read the links @adarsh provided. But the quick answer is that you don’t have a “ncpus=1+1” in your jobs.
rather a select statement is a collection of chunks each separated by plus sign. So you are selecting this
1:ncpus=1
and also another
1:ncpus=1
in many clusters this would be the same thing as writing:
select=2:ncpus=1
I.e. give me two nodes and on each of those nodes I need 1 core, but I’m sure plenty of people at altair can site reasons why the two different syntaxes could generate different results depending on your particular cluster’s configuration.
Using the multi-chunk syntax can get interesting if in your setup it’s possible to select non-homogeneous configurations. I.e. give me 1 large memory node “plus” give me two nodes that have gpus. Of course writing a job script that can properly dispatch processes on a non-homogenous set of nodes could also be an interesting exercise.