| 301 | } |
| 302 | |
| 303 | Status GrpcSession::RunProto(CallOptions* call_options, |
| 304 | MutableRunStepRequestWrapper* req, |
| 305 | MutableRunStepResponseWrapper* resp) { |
| 306 | string handle; |
| 307 | TF_RETURN_IF_ERROR(Handle(&handle)); |
| 308 | req->set_session_handle(handle); |
| 309 | return master_->RunStep(call_options, req, resp); |
| 310 | } |
| 311 | |
| 312 | Status GrpcSession::PRunSetup(const std::vector<string>& input_names, |
| 313 | const std::vector<string>& output_names, |
nothing calls this directly
no test coverage detected