Skip to content
Snippets Groups Projects
Commit 723decd2 authored by Moe Jette's avatar Moe Jette
Browse files
parent f0166e4f
No related branches found
No related tags found
No related merge requests found
......@@ -196,6 +196,9 @@ documents those changes that are of interest to users and admins.
* Changes in SLURM 1.2.26
=========================
-- Export "slurm_*" symbols in libpmi.
-- Correct number of sockets/cores/threads reported by slurmd (from
Par Andersson, National Supercomputer Centre, Sweden).
* Changes in SLURM 1.2.25
=========================
......
......@@ -298,7 +298,7 @@ host and port information at startup. (The system administrator can add
these option to the mpicc and mpif77 commands directly, so the user will not
need to bother). For example:
<pre>
$ mpicc -L&lt;path_to_slurm_lib&gt; -lpmi ...
$ mpicc -L&lt;path_to_slurm_lib&gt; -lpmi -lslurm ...
$ srun -n20 a.out
</pre>
<b>NOTES:</b>
......@@ -361,7 +361,7 @@ host and port information at startup. (The system administrator can add
these option to the mpicc and mpif77 commands directly, so the user will not
need to bother). <b>Do not use SLURM's MVAPICH plugin for MVAPICH2.</b>
<pre>
$ mpicc -L&lt;path_to_slurm_lib&gt; -lpmi ...
$ mpicc -L&lt;path_to_slurm_lib&gt; -lpmi -lslurm ...
$ srun -n16 --mpi=none a.out
</pre>
......
......@@ -573,8 +573,6 @@ _read_config()
conf->cr_type = cf->select_type_param;
conf->fast_schedule = cf->fast_schedule;
path_pubkey = xstrdup(cf->job_credential_public_certificate);
if (!conf->logfile)
......@@ -611,17 +609,10 @@ _read_config()
&conf->block_map_size,
&conf->block_map, &conf->block_map_inv);
if (conf->fast_schedule) {
conf->cpus = conf->conf_cpus;
conf->sockets = conf->conf_sockets;
conf->cores = conf->conf_cores;
conf->threads = conf->conf_threads;
} else {
conf->cpus = conf->actual_cpus;
conf->sockets = conf->actual_sockets;
conf->cores = conf->actual_cores;
conf->threads = conf->actual_threads;
}
conf->cpus = conf->actual_cpus;
conf->sockets = conf->actual_sockets;
conf->cores = conf->actual_cores;
conf->threads = conf->actual_threads;
get_memory(&conf->real_memory_size);
......@@ -750,7 +741,6 @@ _print_conf()
debug3("TaskEpilog = `%s'", conf->task_epilog);
debug3("Use CPUSETS = %u", conf->use_cpusets);
debug3("Use PAM = %u", conf->use_pam);
debug3("Fast Sched = %u", conf->fast_schedule);
slurm_conf_unlock();
}
......@@ -792,7 +782,6 @@ _init_conf()
conf->spooldir = xstrdup(DEFAULT_SPOOLDIR);
conf->use_pam = 0;
conf->use_cpusets = 0;
conf->fast_schedule = 0;
slurm_mutex_init(&conf->config_mutex);
return;
......
......@@ -123,7 +123,6 @@ typedef struct slurmd_config {
uint16_t use_pam;
uint16_t use_cpusets; /* Use cpusets, if available */
uint16_t propagate_prio; /* PropagatePrioProcess flag */
uint16_t fast_schedule; /* use config from file/slurmctld */
} slurmd_conf_t;
extern slurmd_conf_t * conf;
......
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