Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Xin Wang
codes-dev
Commits
4a85c2e8
Commit
4a85c2e8
authored
Nov 08, 2016
by
Misbah Mubarak
Browse files
Declaring rc variable to avoid build failure
parent
42ae0345
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/networks/model-net/dragonfly-custom.C
View file @
4a85c2e8
...
...
@@ -473,7 +473,7 @@ static void dragonfly_read_config(const char * anno, dragonfly_param *params){
int
myRank
;
MPI_Comm_rank
(
MPI_COMM_WORLD
,
&
myRank
);
rc
=
configuration_get_value_int
(
&
config
,
"PARAMS"
,
"local_vc_size"
,
anno
,
&
p
->
local_vc_size
);
int
rc
=
configuration_get_value_int
(
&
config
,
"PARAMS"
,
"local_vc_size"
,
anno
,
&
p
->
local_vc_size
);
if
(
rc
)
{
p
->
local_vc_size
=
1024
;
fprintf
(
stderr
,
"Buffer size of local channels not specified, setting to %d
\n
"
,
p
->
local_vc_size
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment