| 2135 | static const int kFastPathExecuteInputStartIndex = 5; |
| 2136 | |
| 2137 | PyObject* GetPythonObjectFromString(const char* s) { |
| 2138 | #if PY_MAJOR_VERSION >= 3 |
| 2139 | return PyUnicode_FromString(s); |
| 2140 | #else |
| 2141 | return PyBytes_FromString(s); |
| 2142 | #endif |
| 2143 | } |
| 2144 | |
| 2145 | bool CheckResourceVariable(PyObject* item) { |
| 2146 | if (tensorflow::swig::IsResourceVariable(item)) { |
no outgoing calls
no test coverage detected