| 91 | } |
| 92 | |
| 93 | void XlaAsyncOutRecvOp::ComputeAsync(OpKernelContext* ctx, DoneCallback done) { |
| 94 | VLOG(2) << "_XlaAsyncOutRecv with key " << key_ << ", hash " << key_hash_; |
| 95 | GetXlaAsyncIORendezvous()->RecvAsync( |
| 96 | key_hash_, make_recv_callback(ctx, std::move(done))); |
| 97 | } |
| 98 | |
| 99 | // Serves as a helper function to initialize XlaAsyncOutInitOp and |
| 100 | // XlaAsyncOutDoneOp. |
nothing calls this directly
no test coverage detected