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
13a510a3
Commit
13a510a3
authored
17 years ago
by
Moe Jette
Browse files
Options
Downloads
Patches
Plain Diff
svn merge -r12863:12876
https://eris.llnl.gov/svn/slurm/branches/slurm-1.2
parent
7a7ffb1a
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
src/plugins/mpi/mvapich/mvapich.c
+3
-5
3 additions, 5 deletions
src/plugins/mpi/mvapich/mvapich.c
testsuite/expect/test10.12
+5
-0
5 additions, 0 deletions
testsuite/expect/test10.12
testsuite/expect/test20.4
+4
-9
4 additions, 9 deletions
testsuite/expect/test20.4
with
12 additions
and
14 deletions
src/plugins/mpi/mvapich/mvapich.c
+
3
−
5
View file @
13a510a3
...
...
@@ -836,8 +836,7 @@ mvapich_print_abort_message (mvapich_state_t *st, int rank,
msglen
=
0
;
}
host
=
slurm_step_layout_host_name
(
sl
,
slurm_step_layout_host_id
(
sl
,
rank
));
host
=
slurm_step_layout_host_name
(
sl
,
rank
);
if
(
dest
>=
0
)
{
const
char
*
dsthost
=
slurm_step_layout_host_name
(
sl
,
dest
);
...
...
@@ -855,10 +854,9 @@ mvapich_print_abort_message (mvapich_state_t *st, int rank,
st
->
job
->
jobid
,
st
->
job
->
stepid
,
rank
,
host
,
dest
,
dsthost
,
msgstr
);
closelog
();
}
else
{
}
else
{
info
(
"mvapich: %M: ABORT from MPI rank %d [on %s]"
,
rank
,
host
);
rank
,
host
);
/*
* Log the abort event to syslog
* so that system administrators know about possible HW events.
...
...
This diff is collapsed.
Click to expand it.
testsuite/expect/test10.12
+
5
−
0
View file @
13a510a3
...
...
@@ -38,6 +38,11 @@ set non_bg 0
print_header $test_id
if { [test_bluegene] == 0 } {
send_user "\nWARNING: This test is only compatable with bluegene systems\n"
exit 0
}
#
# Test smap resolve ablilty
# for XYZ coords to Rack Midplane
...
...
This diff is collapsed.
Click to expand it.
testsuite/expect/test20.4
+
4
−
9
View file @
13a510a3
...
...
@@ -41,16 +41,11 @@ if {[file executable $pbsnodes] == 0} {
exit 0
}
set match_state 0
set match_pcpus 0
set matches 0
spawn $pbsnodes
expect {
-re "state" {
incr match_state
exp_continue
}
-re "pcpus" {
incr match_pcpus
-re "state.*pcpus" {
incr matches
exp_continue
}
timeout {
...
...
@@ -61,7 +56,7 @@ expect {
wait
}
}
if {
(
$match
_state == 0) || ($match_pcpu
s == 0
)
} {
if {$match
e
s == 0} {
send_user "\nFAILURE: pbsnodes output failure\n"
set exit_code 1
}
...
...
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