Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cobalt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
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
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
AIG-public
cobalt
Commits
8d8aa6ac
Commit
8d8aa6ac
authored
8 years ago
by
Paul Rich
Browse files
Options
Downloads
Plain Diff
Merge branch 'develop'
parents
ebce003e
da96b175
Branches
Branches containing commit
Tags
cobalt-1.0.15
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGES
+6
-0
6 additions, 0 deletions
CHANGES
src/lib/Components/alps_script_forker.py
+2
-2
2 additions, 2 deletions
src/lib/Components/alps_script_forker.py
with
8 additions
and
2 deletions
CHANGES
+
6
−
0
View file @
8d8aa6ac
= Changes from previous Cobalt Versions =
== Changes to 1.0.15 ==
* Fix for an issue on Cray systems where Cobalt was not properly passing
a job's node list into the ALPS re-reservation. This could cause a mismatch
in the nodes that Cobalt was actually running a job on and what it thought the job
was running on.
== Changes to 1.0.14 ==
* Fix for cluster systems where nodes that weren't numbered could cause
showres/qstat to fail to error out when displaying locations.
...
...
This diff is collapsed.
Click to expand it.
src/lib/Components/alps_script_forker.py
+
2
−
2
View file @
8d8aa6ac
...
...
@@ -10,7 +10,7 @@ import Cobalt.Components.pg_forker
PGChild
=
Cobalt
.
Components
.
pg_forker
.
PGChild
PGForker
=
Cobalt
.
Components
.
pg_forker
.
PGForker
import
Cobalt.Util
from
Cobalt.Util
import
init_cobalt_config
,
get_config_option
from
Cobalt.Util
import
init_cobalt_config
,
get_config_option
,
expand_num_list
from
cray_messaging
import
BasilRequest
from
cray_messaging
import
parse_response
,
ALPSError
...
...
@@ -119,7 +119,7 @@ class ALPSScriptChild (PGChild):
params
[
'
batch_id
'
]
=
self
.
pg
.
jobid
params
[
'
width
'
]
=
int
(
self
.
pg
.
nodect
)
*
int
(
DEFAULT_DEPTH
)
params
[
'
nppn
'
]
=
int
(
DEFAULT_DEPTH
)
#FIXME fix this. Pass this in from qsub. FIXME
params
[
'
node_
id_
list
'
]
=
self
.
pg
.
location
[
0
]
params
[
'
node_list
'
]
=
expand_num_list
(
self
.
pg
.
location
[
0
]
)
params
[
'
depth
'
]
=
None
params
[
'
npps
'
]
=
None
params
[
'
nspn
'
]
=
None
...
...
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