46 | | srun --job-name=adquisicion --mem=1G --partition=fast --cpus-per-task=10 stress --cpu 1 --vm 1 --vm-bytes 1G --timeout 120 |
47 | | srun --job-name=curado --mem=10G --partition=fast --cpus-per-task=2 stress --cpu 4 --vm 1 --vm-bytes 10G --timeout 60 |
48 | | srun --job-name=analisis --mem=4G --partition=fast --cpus-per-task=5 stress --cpu 10 --vm 1 --vm-bytes 4G --timeout 60 |
49 | | srun --job-name=resultados --mem=1G --partition=fast --cpus-per-task=5 stress --cpu 1 --vm 1 --vm-bytes 1G --timeout 120 |
| 46 | #!/bin/bash |
| 47 | srun --job-name=adquisicion --mem=1G --partition=fast --cpus-per-task=1 stress --cpu 1 --vm 1 --vm-bytes 1G --timeout 120 |
| 48 | srun --job-name=curado --mem=10G --partition=fast --cpus-per-task=4 stress --cpu 4 --vm 1 --vm-bytes 10G --timeout 60 |
| 49 | srun --job-name=analisis --mem=4G --partition=fast --cpus-per-task=10 stress --cpu 10 --vm 1 --vm-bytes 4G --timeout 60 |
| 50 | srun --job-name=resultados --mem=1G --partition=fast --cpus-per-task=1 stress --cpu 1 --vm 1 --vm-bytes 1G --timeout 120 |