| 272 | } |
| 273 | |
| 274 | static void nb_ndarray_releasebuffer(PyObject *, Py_buffer *view) { |
| 275 | PyMem_Free(view->internal); |
| 276 | } |
| 277 | |
| 278 | // This function implements __dlpack__() for a nanobind.nb_ndarray. |
| 279 | static PyObject *nb_ndarray_dlpack(PyObject *self, PyObject *const *args, |
nothing calls this directly
no outgoing calls
no test coverage detected