You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LocalFutures are lightweight future objects used internally within the runtime system for signaling within a PE. I'm working on an application that uses futures that are guaranteed to send results within the same PE. Because LocalFutures avoid communication, they should be made available to user code, with documentation making it clear that:
They cannot be used across PEs.
Values sent through a local future are passed by reference.
The text was updated successfully, but these errors were encountered:
LocalFutures
are lightweight future objects used internally within the runtime system for signaling within a PE. I'm working on an application that uses futures that are guaranteed to send results within the same PE. BecauseLocalFutures
avoid communication, they should be made available to user code, with documentation making it clear that:The text was updated successfully, but these errors were encountered: