| 917 | PyObject* TFE_Py_UID() { return PyLong_FromLongLong(get_uid()); } |
| 918 | |
| 919 | void TFE_DeleteContextCapsule(PyObject* context) { |
| 920 | TFE_Context* ctx = |
| 921 | reinterpret_cast<TFE_Context*>(PyCapsule_GetPointer(context, nullptr)); |
| 922 | TFE_DeleteContext(ctx); |
| 923 | } |
| 924 | |
| 925 | static tensorflow::int64 MakeInt(PyObject* integer) { |
| 926 | #if PY_MAJOR_VERSION >= 3 |
nothing calls this directly
no test coverage detected