Skip to content
Snippets Groups Projects
Commit 9e2fc5de authored by Danny Auble's avatar Danny Auble
Browse files

CRAY - Fix srun --mem_bind=local option with launch/aprun.

parent 278b955c
No related branches found
No related tags found
No related merge requests found
......@@ -15,6 +15,7 @@ documents those changes that are of interest to users and admins.
-- BGQ - added head ppcfloor as an include dir when building.
-- BGQ - Better debug messages in runjob_mux plugin.
-- PMI2 Updated the Makefile.am to build a versioned library.
-- CRAY - Fix srun --mem_bind=local option with launch/aprun.
* Changes in Slurm 2.6.0
========================
......
......@@ -582,7 +582,7 @@ extern int launch_p_setup_srun_opt(char **rest)
"%u", opt.sockets_per_node);
}
if (opt.mem_bind && strstr(opt.mem_bind, "local")) {
if (opt.mem_bind_type & MEM_BIND_LOCAL) {
opt.argc += 1;
xrealloc(opt.argv, opt.argc * sizeof(char *));
opt.argv[command_pos++] = xstrdup("-ss");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment