| 724 | } // namespace |
| 725 | |
| 726 | void TFE_Py_Execute(TFE_Context* ctx, const char* device_name, |
| 727 | const char* op_name, TFE_InputTensorHandles* inputs, |
| 728 | PyObject* attrs, TFE_OutputTensorHandles* outputs, |
| 729 | TF_Status* out_status) { |
| 730 | TFE_Py_ExecuteCancelable(ctx, device_name, op_name, inputs, attrs, |
| 731 | /*cancellation_manager=*/nullptr, outputs, |
| 732 | out_status); |
| 733 | } |
| 734 | |
| 735 | void TFE_Py_ExecuteCancelable(TFE_Context* ctx, const char* device_name, |
| 736 | const char* op_name, |
nothing calls this directly
no test coverage detected