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
b0bc270b
Commit
b0bc270b
authored
12 years ago
by
Morris Jette
Browse files
Options
Downloads
Patches
Plain Diff
Disable sstat command on Cray and Bluegene systems
parent
1d90cd35
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
doc/html/bluegene.shtml
+3
-2
3 additions, 2 deletions
doc/html/bluegene.shtml
doc/html/cray.shtml
+7
-5
7 additions, 5 deletions
doc/html/cray.shtml
doc/man/man1/sstat.1
+5
-1
5 additions, 1 deletion
doc/man/man1/sstat.1
src/sstat/sstat.c
+9
-0
9 additions, 0 deletions
src/sstat/sstat.c
with
24 additions
and
8 deletions
doc/html/bluegene.shtml
+
3
−
2
View file @
b0bc270b
...
...
@@ -70,7 +70,8 @@ have, for instance, the 4th nodeboard populated instead of the 1st.
<p>The normal set of SLURM user tools: <i>sbatch</i>, <i>scancel</i>,
<i>sinfo</i>, <i>squeue</i>, and <i>scontrol</i> provide all of the expected
services except support for job steps, which is detailed later.</p>
services except support for job steps, which is detailed later.
The sstat command is not supported on Cray systems.</p>
<p>Seven job submission options are available exclusively on BlueGene systems:</p>
<table>
...
...
@@ -866,6 +867,6 @@ scheduling logic, etc. </p>
<p class="footer"><a href="#top">top</a></p>
<p style="text-align:center;">Last modified
8 August
2012</p>
<p style="text-align:center;">Last modified
7 November
2012</p>
<!--#include virtual="footer.txt"-->
This diff is collapsed.
Click to expand it.
doc/html/cray.shtml
+
7
−
5
View file @
b0bc270b
...
...
@@ -154,12 +154,14 @@ file. This option is set with RPMs from Cray.</p>
<p>Cray/ALPS node ordering is a topic of ongoing work, some information can be found in the CUG-2010 paper
"<i>ALPS, Topology, and Performance</i>" by Carl Albing and Mark Baker.</p>
<h3>
The scancel command and signalling job
s</h3>
On Cray systems, all signals
<b>except</b>
SIGCHLD, SIGCONT, SIGSTOP, SIGTSTP, SIGTTIN, SIGTTOU, SIGURG, or
SIGWINCH
cause the ALPS reservation to be released.
<h3>
Other Command Difference
s</h3>
<p>
On Cray systems, all signals
sent to the job using the scancel command
<b>except</b>
SIGCHLD, SIGCONT, SIGSTOP, SIGTSTP, SIGTTIN, SIGTTOU, SIGURG, or
SIGWINCH
cause the ALPS reservation to be released.
The job however will not be terminated except in the case of SIGKILL and
may then be used for post processing.
may then be used for post processing.</p>
<p>The sstat command is not supported on Cray systems.</p>
<h3>GPU Use</h3>
...
...
This diff is collapsed.
Click to expand it.
doc/man/man1/sstat.1
+
5
−
1
View file @
b0bc270b
...
...
@@ -32,10 +32,14 @@ For the non\-root user, the
output is limited to the user's jobs.
.PP
N
ote
:
t
he
N
OTE
:
T
he
.BR "sstat "
command requires that the \f3jobacct_gather\fP plugin be installed and
operational.
.PP
NOTE: The
.BR "sstat "
command is not supported on Cray or IBM BlueGene systems.
.TP
\f3\-a\fP\f3,\fP \f3\-\-allsteps\fP
...
...
This diff is collapsed.
Click to expand it.
src/sstat/sstat.c
+
9
−
0
View file @
b0bc270b
...
...
@@ -171,6 +171,15 @@ int main(int argc, char **argv)
uint32_t
stepid
=
0
;
slurmdb_selected_step_t
*
selected_step
=
NULL
;
#ifdef HAVE_CRAY
error
(
"The sstat command is not supported on Cray systems"
);
return
1
;
#endif
#ifdef HAVE_BG
error
(
"The sstat command is not supported on IBM BlueGene systems"
);
return
1
;
#endif
print_fields_list
=
list_create
(
NULL
);
print_fields_itr
=
list_iterator_create
(
print_fields_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