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
fbacf6ec
Commit
fbacf6ec
authored
10 years ago
by
Morris Jette
Browse files
Options
Downloads
Patches
Plain Diff
Add some burst buffer job reasons
parent
f768e8bd
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
slurm/slurm.h.in
+3
-1
3 additions, 1 deletion
slurm/slurm.h.in
src/common/slurm_protocol_defs.c
+4
-0
4 additions, 0 deletions
src/common/slurm_protocol_defs.c
with
7 additions
and
1 deletion
slurm/slurm.h.in
+
3
−
1
View file @
fbacf6ec
...
@@ -377,7 +377,9 @@ enum job_state_reason {
...
@@ -377,7 +377,9 @@ enum job_state_reason {
WAIT_ASSOC_MAX_SUB_JOB, /* ASSOC MaxSubmitJobsPerUser exceeded */
WAIT_ASSOC_MAX_SUB_JOB, /* ASSOC MaxSubmitJobsPerUser exceeded */
WAIT_MAX_REQUEUE, /* MAX_BATCH_REQUEUE reached */
WAIT_MAX_REQUEUE, /* MAX_BATCH_REQUEUE reached */
WAIT_ARRAY_TASK_LIMIT /* job array running task limit */
WAIT_ARRAY_TASK_LIMIT, /* job array running task limit */
WAIT_BURST_BUFFER_RESOURCE, /* Burst buffer resources */
WAIT_BURST_BUFFER_STAGING /* Burst buffer file stage-in */
};
};
enum job_acct_types {
enum job_acct_types {
...
...
This diff is collapsed.
Click to expand it.
src/common/slurm_protocol_defs.c
+
4
−
0
View file @
fbacf6ec
...
@@ -1171,6 +1171,10 @@ extern char *job_reason_string(enum job_state_reason inx)
...
@@ -1171,6 +1171,10 @@ extern char *job_reason_string(enum job_state_reason inx)
return
"JobHoldMaxRequeue"
;
return
"JobHoldMaxRequeue"
;
case
WAIT_ARRAY_TASK_LIMIT
:
case
WAIT_ARRAY_TASK_LIMIT
:
return
"JobArrayTaskLimit"
;
return
"JobArrayTaskLimit"
;
case
WAIT_BURST_BUFFER_RESOURCE
:
return
"BurstBufferResources"
;
case
WAIT_BURST_BUFFER_STAGING
:
return
"BurstBufferStageIn"
;
default:
default:
snprintf
(
val
,
sizeof
(
val
),
"%d"
,
inx
);
snprintf
(
val
,
sizeof
(
val
),
"%d"
,
inx
);
return
val
;
return
val
;
...
...
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