Wrapper for TF_PRun that converts the arguments to appropriate types. If *out_status is OK, the caller becomes the owner of the PyObjects in *out_values.
| 334 | // If *out_status is OK, the caller becomes the owner of the PyObjects |
| 335 | // in *out_values. |
| 336 | void TF_PRun_wrapper(TF_DeprecatedSession* session, const char* handle, |
| 337 | PyObject* feed_dict, const NameVector& output_names, |
| 338 | TF_Status* out_status, PyObjectVector* out_values) { |
| 339 | TF_Run_wrapper_helper(session, handle, nullptr, feed_dict, output_names, |
| 340 | NameVector(), out_status, out_values, nullptr); |
| 341 | ClearDecrefCache(); |
| 342 | } |
| 343 | |
| 344 | // Wrapper for TF_Reset that converts the string vectors to character arrays. |
| 345 | void TF_Reset_wrapper(const TF_SessionOptions* opt, |
nothing calls this directly
no test coverage detected