| 664 | |
| 665 | #if !defined(IS_MOBILE_PLATFORM) |
| 666 | void PrepareRemoteOp(eager::Operation* remote_op, EagerOperation* op) { |
| 667 | EagerContext* ctx = op->EagerContext(); |
| 668 | |
| 669 | remote_op->set_id(ctx->RemoteMgr()->NextOpId()); |
| 670 | remote_op->set_name(op->Name()); |
| 671 | |
| 672 | op->Attrs().FillAttrValueMap(remote_op->mutable_attrs()); |
| 673 | remote_op->set_device(op->Device()->name()); |
| 674 | } |
| 675 | |
| 676 | Status EagerRemoteExecute(EagerOperation* op, TensorHandle** retvals, |
| 677 | int* num_retvals) { |
no test coverage detected