MCPcopy Create free account
hub / github.com/ml-explore/mlx / gc_func_dealloc

Function gc_func_dealloc

python/src/mlx_func.cpp:53–57  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

51}
52
53void gc_func_dealloc(PyObject* self) {
54 PyObject_GC_UnTrack(self);
55 Py_XDECREF(((gc_func*)self)->func);
56 PyObject_GC_Del(self);
57}
58
59static PyMemberDef gc_func_members[] = {
60 {"__vectorcalloffset__",

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected