| 1956 | } |
| 1957 | |
| 1958 | void TFE_Py_TapeSetDeleteTrace(tensorflow::int64 tensor_id) { |
| 1959 | for (TFE_Py_Tape* tape : *GetTapeSet()) { |
| 1960 | tape->tape->DeleteTrace(tensor_id); |
| 1961 | } |
| 1962 | } |
| 1963 | |
| 1964 | std::vector<PyObject*> MakeTensorList(PyObject* tensors) { |
| 1965 | PyObject* seq = PySequence_Fast(tensors, "expected a sequence"); |
no test coverage detected