gentryx / libgeodecomp

A library for C++/Fortran computer simulations (e.g. stencil codes, mesh-free, unstructured grids, n-body & particle methods). Scales from smartphones to petascale supercomputers (e.g. Titan, Tsubame 2.5, Edison, JUQUEEN, Stampede)
https://www.libgeodecomp.org
Boost Software License 1.0
27 stars 19 forks source link

Overloading send function in hpx dataflow simulator to optimize communication #50

Closed zbyerly closed 7 years ago

zbyerly commented 7 years ago

Overloaded "send" function in hpxdataflowsimulator. Send can now accept an rvalue for "message" and using std::move when calling hpx::apply will not create another copy of "message."

gentryx commented 7 years ago

Looks good, thanks!