java - Is there any differences between send and dsend in SimGrid? -
is there differences between send , dsend in simgrid, except except blocking/ non-blocking function?
dsend
non-blocking detached send. if non-blocking send, that's isend
. difference absolutely have msg_comm_wait()
or msg_comm_test()
finish communication started isend
(the data transfer not occur unless so), cannot interact communication started dsend
.
the concept of detached communications inspired detached threads, may read on internet.
Comments
Post a Comment