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
fff922e9
Commit
fff922e9
authored
11 years ago
by
David Bigagli
Browse files
Options
Downloads
Patches
Plain Diff
Fixed sh5util loop when there are no node-step files.
parent
b1699285
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
NEWS
+1
-0
1 addition, 0 deletions
NEWS
src/plugins/acct_gather_profile/hdf5/sh5util/sh5util.c
+8
-0
8 additions, 0 deletions
src/plugins/acct_gather_profile/hdf5/sh5util/sh5util.c
testsuite/expect/test12.6
+1
-1
1 addition, 1 deletion
testsuite/expect/test12.6
with
10 additions
and
1 deletion
NEWS
+
1
−
0
View file @
fff922e9
...
@@ -16,6 +16,7 @@ documents those changes that are of interest to users and admins.
...
@@ -16,6 +16,7 @@ documents those changes that are of interest to users and admins.
-- proctrack/cgroup - Add locking to prevent race condition where one job step
-- proctrack/cgroup - Add locking to prevent race condition where one job step
is ending for a user or job at the same time another job stepsis starting
is ending for a user or job at the same time another job stepsis starting
and the user or job container is deleted from under the starting job step.
and the user or job container is deleted from under the starting job step.
-- Fixed sh5util loop when there are no node-step files.
* Changes in Slurm 2.6.4
* Changes in Slurm 2.6.4
========================
========================
...
...
This diff is collapsed.
Click to expand it.
src/plugins/acct_gather_profile/hdf5/sh5util/sh5util.c
+
8
−
0
View file @
fff922e9
...
@@ -1024,6 +1024,14 @@ static int _merge_step_files(void)
...
@@ -1024,6 +1024,14 @@ static int _merge_step_files(void)
H5Gclose
(
jgid_nodes
);
H5Gclose
(
jgid_nodes
);
H5Gclose
(
jgid_step
);
H5Gclose
(
jgid_step
);
}
}
/* If we did not find the step 0
* bail out.
*/
if
(
stepx
==
0
&&
!
found_files
)
break
;
stepx
++
;
stepx
++
;
}
}
...
...
This diff is collapsed.
Click to expand it.
testsuite/expect/test12.6
+
1
−
1
View file @
fff922e9
...
@@ -162,7 +162,7 @@ expect {
...
@@ -162,7 +162,7 @@ expect {
}
}
set hdf5_file "job_$job_id.h5"
set hdf5_file "job_$job_id.h5"
set srun_pid [spawn $sh5util -j $job_id -l Node:TimeSeries -s Tasks -o $file_out]
set srun_pid [spawn $sh5util -j $job_id
-E
-l Node:TimeSeries -s Tasks -o $file_out]
expect {
expect {
timeout {
timeout {
send_user "\nFAILURE: sh5util extract not responding\n"
send_user "\nFAILURE: sh5util extract not responding\n"
...
...
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