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
8331b531
Commit
8331b531
authored
19 years ago
by
Moe Jette
Browse files
Options
Downloads
Patches
Plain Diff
Fix mpich-gm bugs, thanks to Takao Hatazaki (HP).
parent
4ae0e7c0
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
NEWS
+1
-0
1 addition, 0 deletions
NEWS
src/common/env.c
+2
-2
2 additions, 2 deletions
src/common/env.c
src/slurmd/task.c
+1
-1
1 addition, 1 deletion
src/slurmd/task.c
with
4 additions
and
3 deletions
NEWS
+
1
−
0
View file @
8331b531
...
@@ -13,6 +13,7 @@ documents those changes that are of interest to users and admins.
...
@@ -13,6 +13,7 @@ documents those changes that are of interest to users and admins.
functions MUST set job->cont_id.
functions MUST set job->cont_id.
-- Remove vestigial node_use (virtual or coprocessor) field from job
-- Remove vestigial node_use (virtual or coprocessor) field from job
request RPC.
request RPC.
-- Fix mpich-gm bugs, thanks to Takao Hatazaki (HP).
* Changes in SLURM 0.6.0-pre2
* Changes in SLURM 0.6.0-pre2
=============================
=============================
...
...
This diff is collapsed.
Click to expand it.
src/common/env.c
+
2
−
2
View file @
8331b531
...
@@ -310,8 +310,8 @@ int setup_env(env_t *env)
...
@@ -310,8 +310,8 @@ int setup_env(env_t *env)
}
}
if
(
env
->
gmpi
>=
0
if
(
env
->
gmpi
>=
0
&&
setenvf
(
&
env
->
env
,
"
SLURM_
GMPI"
,
"%d"
,
env
->
gmpi
))
{
&&
setenvf
(
&
env
->
env
,
"GMPI
_ID
"
,
"%d"
,
env
->
gmpi
))
{
error
(
"Unable to set
SLURM_
GMPI environment"
);
error
(
"Unable to set GMPI
_ID
environment"
);
rc
=
SLURM_FAILURE
;
rc
=
SLURM_FAILURE
;
}
}
...
...
This diff is collapsed.
Click to expand it.
src/slurmd/task.c
+
1
−
1
View file @
8331b531
...
@@ -170,7 +170,7 @@ exec_task(slurmd_job_t *job, int i, int waitfd)
...
@@ -170,7 +170,7 @@ exec_task(slurmd_job_t *job, int i, int waitfd)
t
=
job
->
task
[
i
];
t
=
job
->
task
[
i
];
job
->
envtp
->
procid
=
t
->
gtid
;
job
->
envtp
->
procid
=
t
->
gtid
;
job
->
envtp
->
gmpi
=
t
->
gtid
;
job
->
envtp
->
gmpi
=
getenvp
(
job
->
env
,
"SLURM_GMPI"
)
?
t
->
gtid
:
-
1
;
setup_env
(
job
->
envtp
);
setup_env
(
job
->
envtp
);
...
...
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