diff --git a/src/srun/job.c b/src/srun/job.c index 86024089f1465f41cdebb5d42434e9279c2034bf..54eae6980d56dc62b05dab8db5d3a6fc7a9093d1 100644 --- a/src/srun/job.c +++ b/src/srun/job.c @@ -473,7 +473,16 @@ _job_create_internal(allocation_info_t *info) job->nodelist = xstrdup(info->nodelist); hl = hostlist_create(job->nodelist); +#ifdef HAVE_BGL + /* All jobs execute through front-end on Blue Gene/L. + * Normally we would not permit execution of job steps, + * but can fake it by just allocating all tasks to + * one of the allocated nodes. */ + job->nhosts = 1; + opt.overcommit = true; +#else job->nhosts = hostlist_count(hl); +#endif job->jobid = info->jobid; job->stepid = info->stepid;