We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79e4ac1 commit fc867f7Copy full SHA for fc867f7
third_party/xla/xla/python/ifrt/future.h
@@ -30,11 +30,6 @@ namespace ifrt {
30
//
31
// * Awaiting on a `Future` should possibly be cancellable to lower overhead
32
// when the `Future` value woudld be no longer useful or relevant.
33
-//
34
-// * Ideally, there should be a move-only version of `Future`, which will enable
35
-// (1) no reference counting of `Future`s sharing the same `Promise` and (2)
36
-// safe mutable access to the value when the `Future` becomes ready, including
37
-// moving the value out of the `Future`/`Promise`.
38
template <typename T = void>
39
using Future = ::xla::PjRtFuture<T>;
40
0 commit comments