From 5dfd9491680a9becfa8e2984abadbaa60cef70eb Mon Sep 17 00:00:00 2001
From: Mark Grondona <mgrondona@llnl.gov>
Date: Sat, 27 Jul 2002 00:47:58 +0000
Subject: [PATCH]  o small patch to allow multiple tasks per node with -Z

---
 src/srun/job.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/srun/job.c b/src/srun/job.c
index 6edc7ecbb63..e6452163582 100644
--- a/src/srun/job.c
+++ b/src/srun/job.c
@@ -38,7 +38,8 @@ job_create(resource_allocation_response_msg_t *resp)
 		hl = hostlist_create(opt.nodelist);
 		job->jobid = 1;
 		ncpu = 1;
-		opt.nprocs = hostlist_count(hl);
+		if (opt.nprocs <= 0)
+			opt.nprocs = hostlist_count(hl);
 	}
 
 
-- 
GitLab