| 439 | } |
| 440 | |
| 441 | void XrtTensorHandle::Serialize(eager::RemoteTensorHandle* proto) const { |
| 442 | proto->set_op_id(tensor_id_.first); |
| 443 | proto->set_output_num(tensor_id_.second); |
| 444 | proto->set_device(context_->devices_.at(device_id_).name()); |
| 445 | } |
| 446 | |
| 447 | AttrValue MakeAttrValue(std::string s) { |
| 448 | AttrValue a; |
no test coverage detected