My purpose with job_submit.lua script is to limit a "srun" with more
than one node and more than one CPU; in others words, "srun -N 1 -n
1". Because of this reason, in my future script I execute "if" for
comparing that values:
function slurm_job_submit(job_desc, part_list
Christopher Samuel writes:
> On 12/04/18 01:47, Bjørn-Helge Mevik wrote:
>
>> "sysadmin.caos" writes:
>>
>>> srun: error: slurm_job_submit: parameter error 65534 4294967294 1
>>
>> 4294967294 is the special value slurm.NO_VAL, meaning the parameter
>> was not specified. It is for 32 bit paramet
On 12/04/18 01:47, Bjørn-Helge Mevik wrote:
"sysadmin.caos" writes:
srun: error: slurm_job_submit: parameter error 65534 4294967294 1
4294967294 is the special value slurm.NO_VAL, meaning the parameter
was not specified. It is for 32 bit parametres. I guess (but
haven't double checked) th
"sysadmin.caos" writes:
> srun: error: slurm_job_submit: parameter error 65534 4294967294 1
4294967294 is the special value slurm.NO_VAL, meaning the parameter was
not specified. It is for 32 bit parametres. I guess (but haven't
double checked) that 65534 is slurm.NO_VAL16, meaning the sam
Hello,
I'm writing my own "job_submit.lua" for controlling in what
partition a user can run a "srun" and how many CPUs and nodes are
allowed. I want to allow only "srun" in partition "interactive" with
only one core and one node. I have wrote this script but I'm gett