Thanks in advance for any help!
I have a new hpc account and logging in via SSH, and editing files works fine.
However, I cannot run any job, apparently.
what did you try:
sbatch main.sh
with the content of main.sh being
#!/bin/sh
#SBATCH --job-name jobname
#SBATCH --ntasks 1
#SBATCH --cpus-per-task 1
#SBATCH --partition debug-cpu
#SBATCH --time 5:00
echo hi
Calling this file with bash ~/main.sh works fine. Also, srun hostname gives the same error.
what didn’t work:
Not matter what I try, I always get the error below.
what was the expected result:
to run any kind of slurm job
what was the error message:
sbatch: error: Batch job submission failed: Invalid account or account/partition combination specified
path to the relevant files (logs, sbatch script, etc):
~/main.sh
Thanks for your help!