Can I use slurm_submit_sbatch_job API to submit a batch job by only giving a complete job script to the job_desc_msg_t data structure?
For example (pseudo code): job_desc_msg_t my_job; submit_response_msg_t *resp = NULL; char sbatch_script[4096] = "#SBATCH xxxxx\n mpirun hostname"; slurm_init_job_desc_msg(&my_job); job_desc_msg.script = strdup(sbatch_script); slurm_submit_batch_job(&my_job, &resp); Thanks Lei