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
fc7eee88
Commit
fc7eee88
authored
11 years ago
by
Danny Auble
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'origin/slurm-2.6'
Conflicts: NEWS doc/html/team.shtml
parents
1071b145
9f97c2e9
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
+1
-3
1 addition, 3 deletions
NEWS
doc/html/team.shtml
+2
-1
2 additions, 1 deletion
doc/html/team.shtml
doc/html/topology.shtml
+11
-1
11 additions, 1 deletion
doc/html/topology.shtml
src/plugins/gres/gpu/gres_gpu.c
+4
-0
4 additions, 0 deletions
src/plugins/gres/gpu/gres_gpu.c
with
18 additions
and
5 deletions
NEWS
+
1
−
3
View file @
fc7eee88
...
...
@@ -203,9 +203,6 @@ documents those changes that are of interest to users and admins.
-- Sched/backfill - Change default max_job_bf parameter from 50 to 100.
-- Added -I|--item-extract option to sh5util to extract data item from series.
* Changes in Slurm 2.6.7
========================
* Changes in Slurm 2.6.6
========================
-- sched/backfill - Fix bug that could result in failing to reserve resources
...
...
@@ -243,6 +240,7 @@ documents those changes that are of interest to users and admins.
-- Update documentation about QOS limits
-- Retry task exit message from slurmstepd to srun on message timeout.
-- Correction to logic reserving all nodes in a specified partition.
-- Added support for selecting AMD GPU by setting GPU_DEVICE_ORDINAL env var.
* Changes in Slurm 2.6.5
========================
...
...
This diff is collapsed.
Click to expand it.
doc/html/team.shtml
+
2
−
1
View file @
fc7eee88
...
...
@@ -35,6 +35,7 @@ Lead Slurm developers are:
<li>Leith Bade (Australian National University)</li>
<li>Troy Baer (The University of Tennessee, Knoxville)</li>
<li>Susanne Balle (HP)</li>
<li>Dominik Bartkiewicz (University of Warsaw, Poland)</li>
<li>Ralph Bean (Rochester Institute of Technology)</li>
<li>Alexander Bersenev (Institute of Mathematics and Mechanics, Russia)</li>
<li>David Bigagli (SchedMD)</li>
...
...
@@ -187,6 +188,6 @@ Lead Slurm developers are:
<!-- INDIVIDUALS, PLEASE KEEP IN ALPHABETICAL ORDER -->
</ul>
<p style="text-align:center;">Last modified
18 November
201
3
</p>
<p style="text-align:center;">Last modified
5 February
201
4
</p>
<!--#include virtual="footer.txt"-->
This diff is collapsed.
Click to expand it.
doc/html/topology.shtml
+
11
−
1
View file @
fc7eee88
...
...
@@ -132,6 +132,16 @@ SwitchName=s3 Nodes=tux[12-15]
SwitchName=s4 Switches=s[0-3]
</pre>
<p>Note that compute nodes on switches that lack a common parent switch can
be used, but no job will span leaf switches without a common parent.
For example, it is legal to remove the line "SwitchName=s4 Switches=s[0-3]"
from the above topology.conf file.
In that case, no job will span more than four compute nodes on any single leaf
switch.
This configuration can be useful if one wants to schedule multiple phyisical
clusters as a single logical cluster under the control of a single slurmctld
daemon.</p>
<h2>User Options</h2>
<p>For use with the topology/tree plugin, user can also specify the maximum
...
...
@@ -161,6 +171,6 @@ The value will be set component types listed in SLURM_TOPOLOGY_ADDR.
Each component will be identified as either "switch" or "node".
A period is used to separate each hardware component type.</p>
<p style="text-align:center;">Last modified
13 Jan
uary 2014</p>
<p style="text-align:center;">Last modified
5 Febr
uary 2014</p>
<!--#include virtual="footer.txt"-->
This diff is collapsed.
Click to expand it.
src/plugins/gres/gpu/gres_gpu.c
+
4
−
0
View file @
fc7eee88
...
...
@@ -250,6 +250,8 @@ extern void job_set_env(char ***job_env_ptr, void *gres_ptr)
if
(
dev_list
)
{
env_array_overwrite
(
job_env_ptr
,
"CUDA_VISIBLE_DEVICES"
,
dev_list
);
env_array_overwrite
(
job_env_ptr
,
"GPU_DEVICE_ORDINAL"
,
dev_list
);
xfree
(
dev_list
);
}
}
...
...
@@ -294,6 +296,8 @@ extern void step_set_env(char ***job_env_ptr, void *gres_ptr)
if
(
dev_list
)
{
env_array_overwrite
(
job_env_ptr
,
"CUDA_VISIBLE_DEVICES"
,
dev_list
);
env_array_overwrite
(
job_env_ptr
,
"GPU_DEVICE_ORDINAL"
,
dev_list
);
xfree
(
dev_list
);
}
}
...
...
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