| 199 | MakeCallableHelper(session->session, callable_options, out_handle, status); |
| 200 | } |
| 201 | void TF_SessionMakeCallable(TF_Session* session, |
| 202 | const TF_Buffer* callable_options, |
| 203 | int64_t* out_handle, TF_Status* status) { |
| 204 | MakeCallableHelper(session->session, callable_options, out_handle, status); |
| 205 | } |
| 206 | |
| 207 | namespace { |
| 208 | void RunCallableHelper(tensorflow::Session* session, int64_t handle, |
nothing calls this directly
no test coverage detected