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
420a4ce9
Commit
420a4ce9
authored
19 years ago
by
Moe Jette
Browse files
Options
Downloads
Patches
Plain Diff
Correct typo "Indicies" to "Indices". Bryan O'Sullivan <bos@pathscale.com>
parent
9201ca93
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
doc/man/man1/scontrol.1
+2
-2
2 additions, 2 deletions
doc/man/man1/scontrol.1
src/api/job_info.c
+3
-3
3 additions, 3 deletions
src/api/job_info.c
src/api/partition_info.c
+1
-1
1 addition, 1 deletion
src/api/partition_info.c
with
6 additions
and
6 deletions
doc/man/man1/scontrol.1
+
2
−
2
View file @
420a4ce9
.TH SCONTROL "1" "
March
2005" "scontrol 0.5" "Slurm components"
.TH SCONTROL "1" "
April
2005" "scontrol 0.5" "Slurm components"
.SH "NAME"
.SH "NAME"
scontrol \- Used view and modify Slurm configuration and state.
scontrol \- Used view and modify Slurm configuration and state.
...
@@ -335,7 +335,7 @@ PartitionName=class TotalNodes=10 TotalCPUs=20 RootOnly=NO
...
@@ -335,7 +335,7 @@ PartitionName=class TotalNodes=10 TotalCPUs=20 RootOnly=NO
.br
.br
MinNodes=1 MaxNodes=2 AllowGroups=students
MinNodes=1 MaxNodes=2 AllowGroups=students
.br
.br
Nodes=lx[0031-0040] NodeIndic
i
es=31,40,-1
Nodes=lx[0031-0040] NodeIndices=31,40,-1
.br
.br
scontrol: update PartitionName=class MaxTime=99 MaxNodes=4
scontrol: update PartitionName=class MaxTime=99 MaxNodes=4
.br
.br
...
...
This diff is collapsed.
Click to expand it.
src/api/job_info.c
+
3
−
3
View file @
420a4ce9
...
@@ -144,7 +144,7 @@ slurm_print_job_info ( FILE* out, job_info_t * job_ptr, int one_liner )
...
@@ -144,7 +144,7 @@ slurm_print_job_info ( FILE* out, job_info_t * job_ptr, int one_liner )
/****** Line 6 ******/
/****** Line 6 ******/
fprintf
(
out
,
"NodeList=%s "
,
job_ptr
->
nodes
);
fprintf
(
out
,
"NodeList=%s "
,
job_ptr
->
nodes
);
fprintf
(
out
,
"NodeListIndic
i
es="
);
fprintf
(
out
,
"NodeListIndices="
);
for
(
j
=
0
;
job_ptr
->
node_inx
;
j
++
)
{
for
(
j
=
0
;
job_ptr
->
node_inx
;
j
++
)
{
if
(
j
>
0
)
if
(
j
>
0
)
fprintf
(
out
,
",%d"
,
job_ptr
->
node_inx
[
j
]);
fprintf
(
out
,
",%d"
,
job_ptr
->
node_inx
[
j
]);
...
@@ -190,7 +190,7 @@ slurm_print_job_info ( FILE* out, job_info_t * job_ptr, int one_liner )
...
@@ -190,7 +190,7 @@ slurm_print_job_info ( FILE* out, job_info_t * job_ptr, int one_liner )
/****** Line 10 ******/
/****** Line 10 ******/
fprintf
(
out
,
"ReqNodeList=%s "
,
job_ptr
->
req_nodes
);
fprintf
(
out
,
"ReqNodeList=%s "
,
job_ptr
->
req_nodes
);
fprintf
(
out
,
"ReqNodeListIndic
i
es="
);
fprintf
(
out
,
"ReqNodeListIndices="
);
for
(
j
=
0
;
job_ptr
->
req_node_inx
;
j
++
)
{
for
(
j
=
0
;
job_ptr
->
req_node_inx
;
j
++
)
{
if
(
j
>
0
)
if
(
j
>
0
)
fprintf
(
out
,
",%d"
,
job_ptr
->
req_node_inx
[
j
]);
fprintf
(
out
,
",%d"
,
job_ptr
->
req_node_inx
[
j
]);
...
@@ -206,7 +206,7 @@ slurm_print_job_info ( FILE* out, job_info_t * job_ptr, int one_liner )
...
@@ -206,7 +206,7 @@ slurm_print_job_info ( FILE* out, job_info_t * job_ptr, int one_liner )
/****** Line 11 ******/
/****** Line 11 ******/
fprintf
(
out
,
"ExcNodeList=%s "
,
job_ptr
->
exc_nodes
);
fprintf
(
out
,
"ExcNodeList=%s "
,
job_ptr
->
exc_nodes
);
fprintf
(
out
,
"ExcNodeListIndic
i
es="
);
fprintf
(
out
,
"ExcNodeListIndices="
);
for
(
j
=
0
;
job_ptr
->
exc_node_inx
;
j
++
)
{
for
(
j
=
0
;
job_ptr
->
exc_node_inx
;
j
++
)
{
if
(
j
>
0
)
if
(
j
>
0
)
fprintf
(
out
,
",%d"
,
job_ptr
->
exc_node_inx
[
j
]);
fprintf
(
out
,
",%d"
,
job_ptr
->
exc_node_inx
[
j
]);
...
...
This diff is collapsed.
Click to expand it.
src/api/partition_info.c
+
1
−
1
View file @
420a4ce9
...
@@ -132,7 +132,7 @@ void slurm_print_partition_info ( FILE* out, partition_info_t * part_ptr,
...
@@ -132,7 +132,7 @@ void slurm_print_partition_info ( FILE* out, partition_info_t * part_ptr,
fprintf
(
out
,
"
\n
"
);
fprintf
(
out
,
"
\n
"
);
/****** Line 4 ******/
/****** Line 4 ******/
fprintf
(
out
,
"Nodes=%s NodeIndic
i
es="
,
part_ptr
->
nodes
);
fprintf
(
out
,
"Nodes=%s NodeIndices="
,
part_ptr
->
nodes
);
for
(
j
=
0
;
part_ptr
->
node_inx
;
j
++
)
{
for
(
j
=
0
;
part_ptr
->
node_inx
;
j
++
)
{
if
(
j
>
0
)
if
(
j
>
0
)
fprintf
(
out
,
",%d"
,
part_ptr
->
node_inx
[
j
]);
fprintf
(
out
,
",%d"
,
part_ptr
->
node_inx
[
j
]);
...
...
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