Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Slurm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tud-zih-energy
Slurm
Commits
723decd2
Commit
723decd2
authored
17 years ago
by
Moe Jette
Browse files
Options
Downloads
Patches
Plain Diff
svn merge -r13680:13689
https://eris.llnl.gov/svn/slurm/branches/slurm-1.2
parent
f0166e4f
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
NEWS
+3
-0
3 additions, 0 deletions
NEWS
doc/html/quickstart.shtml
+2
-2
2 additions, 2 deletions
doc/html/quickstart.shtml
src/slurmd/slurmd/slurmd.c
+4
-15
4 additions, 15 deletions
src/slurmd/slurmd/slurmd.c
src/slurmd/slurmd/slurmd.h
+0
-1
0 additions, 1 deletion
src/slurmd/slurmd/slurmd.h
with
9 additions
and
18 deletions
NEWS
+
3
−
0
View file @
723decd2
...
...
@@ -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
=========================
...
...
This diff is collapsed.
Click to expand it.
doc/html/quickstart.shtml
+
2
−
2
View file @
723decd2
...
...
@@ -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<path_to_slurm_lib> -lpmi ...
$ mpicc -L<path_to_slurm_lib> -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<path_to_slurm_lib> -lpmi ...
$ mpicc -L<path_to_slurm_lib> -lpmi
-lslurm
...
$ srun -n16 --mpi=none a.out
</pre>
...
...
This diff is collapsed.
Click to expand it.
src/slurmd/slurmd/slurmd.c
+
4
−
15
View file @
723decd2
...
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
src/slurmd/slurmd/slurmd.h
+
0
−
1
View file @
723decd2
...
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment