| 109 | } |
| 110 | |
| 111 | Status RecordNewSession(Session* session) { |
| 112 | ReplayOp op; |
| 113 | NewReplaySession* req = op.mutable_new_replay_session(); |
| 114 | req->set_session_handle(SessionToHandle(session)); |
| 115 | return Flush(op); |
| 116 | } |
| 117 | |
| 118 | Status RecordRun(Session* session, |
| 119 | const std::vector<std::pair<string, Tensor> >& inputs, |
no test coverage detected