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
9b4523b7
Commit
9b4523b7
authored
14 years ago
by
Danny Auble
Browse files
Options
Downloads
Patches
Plain Diff
fix some minor issue and make it so we can make small blocks in emulation
parent
0859e344
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/plugins/select/bluegene/bgq_ba/block_allocator.c
+16
-8
16 additions, 8 deletions
src/plugins/select/bluegene/bgq_ba/block_allocator.c
src/plugins/select/bluegene/bgq_bl/bridge_linker.cc
+2
-0
2 additions, 0 deletions
src/plugins/select/bluegene/bgq_bl/bridge_linker.cc
with
18 additions
and
8 deletions
src/plugins/select/bluegene/bgq_ba/block_allocator.c
+
16
−
8
View file @
9b4523b7
...
...
@@ -187,8 +187,11 @@ extern int new_ba_request(select_ba_request_t* ba_request)
if
(
ba_request
->
size
&&
(
ba_request
->
geometry
[
0
]
==
(
uint16_t
)
NO_VAL
))
{
ba_request
->
geometry
[
0
]
=
ba_request
->
size
;
}
else
}
else
{
error
(
"new_ba_request: "
"No size or geometry given"
);
return
0
;
}
return
1
;
}
...
...
@@ -540,11 +543,11 @@ extern char *set_bg_block(List results, uint16_t *start,
if
(
conn_type
[
A
]
>=
SELECT_SMALL
)
{
/* adding the ba_mp and ending */
if
(
results
)
list_append
(
results
,
ba_mp
);
ba_mp
->
used
=
BA_MP_USED_TRUE
;
name
=
xstrdup
(
ba_mp
->
coord_str
);
if
(
results
)
name
=
_copy_from_main
(
main_mps
,
results
);
else
name
=
xstrdup
(
ba_mp
->
coord_str
);
goto
end_it
;
}
...
...
@@ -1686,7 +1689,11 @@ static int _find_path(List mps, ba_mp_t *start_mp, int dim,
*
longest
=
curr_mp
->
coord
[
dim
];
/* This should never happen since we got here
from an unused mp */
xassert
(
!
(
axis_switch
->
usage
&
BG_SWITCH_IN_PASS
));
if
(
!
(
axis_switch
->
usage
&
BG_SWITCH_IN_PASS
))
{
info
(
"got a bad axis_switch at %s %d %s"
,
curr_mp
->
coord
->
str
,
dim
,
ba_switch_usage_str
(
axis_switch
->
usage
));
xassert
(
0
);
}
if
((
count
<
geometry
)
&&
!
_mp_used
(
curr_mp
,
dim
))
{
if
(
curr_mp
->
coord
[
dim
]
>
*
block_end
)
*
block_end
=
curr_mp
->
coord
[
dim
];
...
...
@@ -1960,11 +1967,12 @@ static int _find_match(select_ba_request_t *ba_request, List results)
}
if
(
ba_request
->
geometry
[
0
]
==
(
uint16_t
)
NO_VAL
)
{
if
(
!
ba_geo_table
||
!
ba_geo_table
->
geometry
)
if
(
!
ba_geo_table
||
!
ba_geo_table
->
geometry
)
{
error
(
"_find_match: no geo table"
);
return
0
;
}
memcpy
(
ba_request
->
geometry
,
ba_geo_table
->
geometry
,
sizeof
(
ba_geo_table
->
geometry
));
return
0
;
}
else
ba_request
->
geo_table
=
NULL
;
...
...
This diff is collapsed.
Click to expand it.
src/plugins/select/bluegene/bgq_bl/bridge_linker.cc
+
2
−
0
View file @
9b4523b7
...
...
@@ -310,10 +310,12 @@ extern int bridge_block_create(bg_record_t *bg_record)
if
(
!
bridge_init
(
NULL
))
return
SLURM_ERROR
;
#ifdef HAVE_BG_FILES
if
(
bg_record
->
node_cnt
<
bg_conf
->
mp_node_cnt
)
{
info
(
"we can't make small blocks yet"
);
return
SLURM_ERROR
;
}
#endif
if
(
!
bg_record
->
ba_mp_list
||
!
list_count
(
bg_record
->
ba_mp_list
))
{
error
(
"There are no midplanes in this block?"
);
...
...
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