Re: [slurm-users] Job requesting two different GPUs on two

2021-06-11 Thread Gestió Servidors
Hi, I have tried with > > #!/bin/bash > # > #SBATCH --job-name=N2n4 > #SBATCH --partition=cuda.q > #SBATCH --output=N2n4-CUDA.txt > #SBATCH -N 1 # number of nodes with the first GPU > #SBATCH -n 2 # number of cores > #SBATCH --gres=gpu:GeForceRTX3080:1 > #SBATCH hetjob > #SBATCH -N 1 # number of

Re: [slurm-users] Job requesting two different GPUs on two different nodes

2021-06-10 Thread Diego Zuccato
. Maybe someone more experienced can refine it. No... it doesn't work... -Mensaje original- De: Diego Zuccato Enviado el: jueves, 10 de junio de 2021 10:37 Para: Slurm User Community List ; Gestió Servidors Asunto: Re: [slurm-users] Job requesting two different GPUs on two differen

Re: [slurm-users] Job requesting two different GPUs on two different nodes

2021-06-10 Thread Diego Zuccato
Il 08/06/2021 15:55, Gestió Servidors ha scritto: Have you tried defining it as heterogeneus job? https://slurm.schedmd.com/heterogeneous_jobs.html #SBATCH hetjob for new SLURM versions or #SBATCH packjob for older ones HIH, Diego Hi, Today, doing some tests, I have not got a solution to

Re: [slurm-users] Job requesting two different GPUs on two

2021-06-10 Thread Gestió Servidors
Hello, No, with "#SBATCH --gres=gpu:2" SLURM searchs a node with 2 GPUs but I need to run my job in 2 nodes using 2 GPUs but one GPU in each node. If both GPUs are the same, job runs OK, but I want to test run my job in two nodes: one offers a GeForceRTX3080 and the second offers a GeForceRTX20

Re: [slurm-users] Job requesting two different GPUs on two different nodes

2021-06-08 Thread Loris Bennett
Hi Gestió,: Gestió Servidors writes: > Hi, > > > > Today, doing some tests, I have not got a solution to write a submit script > that requests 2 different GPUs on 2 different nodes. With this simple script: > > > > #!/bin/bash > # > #SBATCH --job-name=N2n4 > #SBATCH --output=N2n4-CUDA.txt >