Skip to content

Commit fc867f7

Browse files
ezhulenevtensorflower-gardener
authored andcommitted
[xla:ifrt] Update ifrt::Future comment
(ifrt|pjrt)::Future already have correct move semantics and act as a move-only value if payload type is move-only. PiperOrigin-RevId: 723686554
1 parent 79e4ac1 commit fc867f7

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

third_party/xla/xla/python/ifrt/future.h

-5
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,6 @@ namespace ifrt {
3030
//
3131
// * Awaiting on a `Future` should possibly be cancellable to lower overhead
3232
// 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`.
3833
template <typename T = void>
3934
using Future = ::xla::PjRtFuture<T>;
4035

0 commit comments

Comments
 (0)