Wrapper for TF_Run that converts the arguments to appropriate types. If *out_status is OK, the caller becomes the owner of the PyObjects in *out_values.
| 162 | // If *out_status is OK, the caller becomes the owner of the PyObjects |
| 163 | // in *out_values. |
| 164 | void TF_Run_wrapper(TF_DeprecatedSession* session, const TF_Buffer* run_options, |
| 165 | PyObject* feed_dict, const NameVector& output_names, |
| 166 | const NameVector& target_nodes, TF_Status* out_status, |
| 167 | PyObjectVector* out_values, TF_Buffer* run_outputs) { |
| 168 | TF_Run_wrapper_helper(session, nullptr, run_options, feed_dict, output_names, |
| 169 | target_nodes, out_status, out_values, run_outputs); |
| 170 | ClearDecrefCache(); |
| 171 | } |
| 172 | |
| 173 | namespace { |
| 174 | void MakeCallableHelper(tensorflow::Session* session, |
nothing calls this directly
no test coverage detected