From 41ceb598c3d54f7bedba62c3c5d92622c84329c7 Mon Sep 17 00:00:00 2001
From: "Christopher J. Morrone" <morrone2@llnl.gov>
Date: Fri, 14 Jul 2006 17:58:44 +0000
Subject: [PATCH] Update default number of tasks

---
 src/slaunch/opt.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/slaunch/opt.c b/src/slaunch/opt.c
index 1d76aed88e1..6183a917f2b 100644
--- a/src/slaunch/opt.c
+++ b/src/slaunch/opt.c
@@ -1448,8 +1448,11 @@ static void _opt_args(int argc, char **argv)
 		} 
 	}
 
-	if (!opt.num_nodes_set && opt.num_tasks < opt.num_nodes)
+	if (!opt.num_nodes_set
+	    && opt.num_tasks_set && opt.num_tasks < opt.num_nodes)
 		opt.num_nodes = opt.num_tasks;
+	if (!opt.num_tasks_set)
+		opt.num_tasks = opt.num_nodes;
 
 	if (!_opt_verify())
 		exit(1);
-- 
GitLab