| 923 | } |
| 924 | |
| 925 | static tensorflow::int64 MakeInt(PyObject* integer) { |
| 926 | #if PY_MAJOR_VERSION >= 3 |
| 927 | return PyLong_AsLong(integer); |
| 928 | #else |
| 929 | return PyInt_AsLong(integer); |
| 930 | #endif |
| 931 | } |
| 932 | |
| 933 | static tensorflow::int64 FastTensorId(PyObject* tensor) { |
| 934 | if (EagerTensor_CheckExact(tensor)) { |
no outgoing calls
no test coverage detected