Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
sds
sds-keyval
Commits
41251142
Commit
41251142
authored
Oct 16, 2017
by
David Rich
Committed by
Rob Latham
Nov 22, 2017
Browse files
No need to specify IP and port.
parent
e9640b45
Changes
1
Hide whitespace changes
Inline
Side-by-side
test/test-mpi.cc
View file @
41251142
...
...
@@ -86,7 +86,8 @@ int main(int argc, char *argv[])
printf
(
"client (rank %d): server addr_str: %s
\n
"
,
rank
,
server_addr_str
);
// kv-client
sprintf
(
client_addr_str_in
,
"cci+tcp://534%02d"
,
rank
);
//sprintf(client_addr_str_in, "cci+tcp://534%02d", rank);
sprintf
(
client_addr_str_in
,
"cci+tcp://"
);
kv_context
*
context
=
kv_client_register
(
client_addr_str_in
);
hret
=
margo_addr_self
(
context
->
mid
,
&
client_addr
);
DIE_IF
(
hret
!=
HG_SUCCESS
,
"margo_addr_self"
);
...
...
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