| 18 | namespace tensorflow { |
| 19 | |
| 20 | Safe_PyObjectPtr make_safe(PyObject* object) { |
| 21 | return Safe_PyObjectPtr(object); |
| 22 | } |
| 23 | |
| 24 | Safe_TF_TensorPtr make_safe(TF_Tensor* tensor) { |
| 25 | return Safe_TF_TensorPtr(tensor); |
no outgoing calls
no test coverage detected