Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
3ebaff2e
"torchvision/vscode:/vscode.git/clone" did not exist on "2831f11abcb9ec7b951b6bbbcb7a85b79ee2fd79"
Commit
3ebaff2e
authored
Oct 21, 2012
by
Davis King
Browse files
Added try_receive() routines to the bsp_context object.
parent
cbb319fe
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
116 additions
and
38 deletions
+116
-38
dlib/bsp/bsp.h
dlib/bsp/bsp.h
+22
-3
dlib/bsp/bsp_abstract.h
dlib/bsp/bsp_abstract.h
+72
-16
dlib/test/bsp.cpp
dlib/test/bsp.cpp
+22
-19
No files found.
dlib/bsp/bsp.h
View file @
3ebaff2e
...
...
@@ -420,16 +420,35 @@ namespace dlib
}
template
<
typename
T
>
bool
receive
(
void
receive
(
T
&
item
)
{
if
(
!
try_receive
(
item
))
throw
dlib
::
socket_error
(
"bsp_context::receive(): no messages to receive, all nodes currently blocked."
);
}
template
<
typename
T
>
bool
try_receive
(
T
&
item
)
{
unsigned
long
sending_node_id
;
return
receive
(
item
,
sending_node_id
);
return
try_receive
(
item
,
sending_node_id
);
}
template
<
typename
T
>
void
receive
(
T
&
item
,
unsigned
long
&
sending_node_id
)
{
if
(
!
try_receive
(
item
,
sending_node_id
))
throw
dlib
::
socket_error
(
"bsp_context::receive(): no messages to receive, all nodes currently blocked."
);
}
template
<
typename
T
>
bool
receive
(
bool
try_
receive
(
T
&
item
,
unsigned
long
&
sending_node_id
)
...
...
dlib/bsp/bsp_abstract.h
View file @
3ebaff2e
...
...
@@ -102,7 +102,7 @@ namespace dlib
!*/
template
<
typename
T
>
bool
receive
(
bool
try_
receive
(
T
&
item
);
/*!
...
...
@@ -114,17 +114,44 @@ namespace dlib
node.
- else
- The following must have been true for this function to return false:
- All other nodes were blocked on calls to receive() or terminated.
- All other nodes were blocked on calls to receive(),
try_receive(), or have terminated.
- There were not any messages in flight between any nodes.
- That is, if all the nodes had continued to block on receive()
then they all would have blocked forever. Therefore, this
function only returns once there are no more messages to process
by any any node and there is no possibility of more being
generated until control is returned to the callers of receive().
- That is, if all the nodes had continued to block on receive
methods then they all would have blocked forever. Therefore,
this function only returns false once there are no more messages
to process by any node and there is no possibility of more being
generated until control is returned to the callers of receive
methods.
throws
- dlib::socket_error:
This exception is thrown if some error occurs which prevents us from
communicating with other processing nodes.
- dlib::serialization_error or any exception thrown by the global
deserialize(T) routine:
This is thrown if there is a problem in deserialize(). This might
happen if the message sent doesn't match the type T expected by
try_receive().
!*/
template
<
typename
T
>
void
receive
(
T
&
item
);
/*!
requires
- item is serializable
ensures
- #item == the next message which was sent to the calling processing
node.
- This function is just a wrapper around try_receive() that throws an
exception if a message is not received (i.e. if try_receive() returns
false).
throws
- dlib::socket_error:
This exception is thrown if some error occurs which prevents us from
communicating with other processing nodes or if there was not a message
to receive.
- dlib::serialization_error or any exception thrown by the global
deserialize(T) routine:
This is thrown if there is a problem in deserialize(). This might
...
...
@@ -133,7 +160,7 @@ namespace dlib
!*/
template
<
typename
T
>
bool
receive
(
bool
try_
receive
(
T
&
item
,
unsigned
long
&
sending_node_id
);
...
...
@@ -148,17 +175,46 @@ namespace dlib
- #sending_node_id < number_of_nodes()
- else
- The following must have been true for this function to return false:
- All other nodes were blocked on calls to receive() or terminated.
- All other nodes were blocked on calls to receive(),
try_receive(), or have terminated.
- There were not any messages in flight between any nodes.
- That is, if all the nodes had continued to block on receive()
then they all would have blocked forever. Therefore, this
function only returns once there are no more messages to process
by any any node and there is no possibility of more being
generated until control is returned to the callers of receive().
- That is, if all the nodes had continued to block on receive
methods then they all would have blocked forever. Therefore,
this function only returns false once there are no more messages
to process by any node and there is no possibility of more being
generated until control is returned to the callers of receive
methods.
throws
- dlib::socket_error:
This exception is thrown if some error occurs which prevents us from
communicating with other processing nodes.
- dlib::serialization_error or any exception thrown by the global
deserialize(T) routine:
This is thrown if there is a problem in deserialize(). This might
happen if the message sent doesn't match the type T expected by
try_receive().
!*/
template
<
typename
T
>
void
receive
(
T
&
item
,
unsigned
long
&
sending_node_id
);
/*!
requires
- item is serializable
ensures
- #item == the next message which was sent to the calling processing node.
- #sending_node_id == the node id of the node that sent this message.
- #sending_node_id < number_of_nodes()
- This function is just a wrapper around try_receive() that throws an
exception if a message is not received (i.e. if try_receive() returns
false).
throws
- dlib::socket_error:
This exception is thrown if some error occurs which prevents us from
communicating with other processing nodes or if there was not a message
to receive.
- dlib::serialization_error or any exception thrown by the global
deserialize(T) routine:
This is thrown if there is a problem in deserialize(). This might
...
...
@@ -175,8 +231,8 @@ namespace dlib
- There are not any messages in flight between any nodes.
- That is, if all the nodes had continued to block on receive() then
they all would have blocked forever. Therefore, this function only
returns once there are no more messages to process by any
any
node
and
there is no possibility of more being generated until control is
returns once there are no more messages to process by any node
and
there is no possibility of more being generated until control is
returned to the callers of receive().
throws
- dlib::socket_error:
...
...
dlib/test/bsp.cpp
View file @
3ebaff2e
...
...
@@ -114,7 +114,7 @@ namespace
result
=
0
;
int
val
;
while
(
obj
.
receive
(
val
))
while
(
obj
.
try_
receive
(
val
))
result
+=
val
;
}
...
...
@@ -227,24 +227,24 @@ namespace
int
accum
=
0
;
int
temp
=
0
;
while
(
obj
.
receive
(
temp
))
while
(
obj
.
try_
receive
(
temp
))
accum
+=
temp
;
// send to node 1 so it can sum everything
if
(
obj
.
node_id
()
!=
1
)
obj
.
send
(
accum
,
1
);
while
(
obj
.
receive
(
temp
))
while
(
obj
.
try_
receive
(
temp
))
accum
+=
temp
;
// Now hop the accum values along the nodes until the value from node 1 gets to
// node 0.
obj
.
send
(
accum
,
(
obj
.
node_id
()
+
1
)
%
obj
.
number_of_nodes
());
DLIB_TEST
(
obj
.
receive
(
accum
)
)
;
obj
.
receive
(
accum
);
obj
.
send
(
accum
,
(
obj
.
node_id
()
+
1
)
%
obj
.
number_of_nodes
());
DLIB_TEST
(
obj
.
receive
(
accum
)
)
;
obj
.
receive
(
accum
);
obj
.
send
(
accum
,
(
obj
.
node_id
()
+
1
)
%
obj
.
number_of_nodes
());
DLIB_TEST
(
obj
.
receive
(
accum
)
)
;
obj
.
receive
(
accum
);
// this whole block is a noop since it doesn't end up doing anything.
for
(
int
k
=
0
;
k
<
100
;
++
k
)
...
...
@@ -253,7 +253,7 @@ namespace
for
(
int
i
=
0
;
i
<
4
;
++
i
)
{
obj
.
send
(
accum
,
(
obj
.
node_id
()
+
1
)
%
obj
.
number_of_nodes
());
DLIB_TEST
(
obj
.
receive
(
accum
)
)
;
obj
.
receive
(
accum
);
}
}
...
...
@@ -317,24 +317,24 @@ namespace
int
accum
=
0
;
int
temp
=
0
;
while
(
obj
.
receive
(
temp
))
while
(
obj
.
try_
receive
(
temp
))
accum
+=
temp
;
// send to node 1 so it can sum everything
if
(
obj
.
node_id
()
!=
1
)
obj
.
send
(
accum
,
1
);
while
(
obj
.
receive
(
temp
))
while
(
obj
.
try_
receive
(
temp
))
accum
+=
temp
;
// Now hop the accum values along the nodes until the value from node 1 gets to
// node 0.
obj
.
send
(
accum
,
(
obj
.
node_id
()
+
1
)
%
obj
.
number_of_nodes
());
DLIB_TEST
(
obj
.
receive
(
accum
)
)
;
obj
.
receive
(
accum
);
obj
.
send
(
accum
,
(
obj
.
node_id
()
+
1
)
%
obj
.
number_of_nodes
());
DLIB_TEST
(
obj
.
receive
(
accum
)
)
;
obj
.
receive
(
accum
);
obj
.
send
(
accum
,
(
obj
.
node_id
()
+
1
)
%
obj
.
number_of_nodes
());
DLIB_TEST
(
obj
.
receive
(
accum
)
)
;
obj
.
receive
(
accum
);
// this whole block is a noop since it doesn't end up doing anything.
for
(
int
k
=
0
;
k
<
40
;
++
k
)
...
...
@@ -343,7 +343,7 @@ namespace
for
(
int
i
=
0
;
i
<
4
;
++
i
)
{
obj
.
send
(
accum
,
(
obj
.
node_id
()
+
1
)
%
obj
.
number_of_nodes
());
DLIB_TEST_MSG
(
obj
.
receive
(
accum
)
,
obj
.
node_id
())
;
obj
.
receive
(
accum
);
obj
.
receive
();
}
...
...
@@ -414,6 +414,8 @@ namespace
void
perform_test
(
)
{
for
(
int
i
=
0
;
i
<
3
;
++
i
)
{
dotest1
();
dotest2
<
0
>
();
...
...
@@ -422,6 +424,7 @@ namespace
dotest3
();
dotest4
();
}
}
}
a
;
}
...
...
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