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

Function gc_func_vectorcall

python/src/mlx_func.cpp:45–51  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

43}
44
45PyObject* gc_func_vectorcall(
46 PyObject* self,
47 PyObject* const* args,
48 size_t nargs,
49 PyObject* kwnames) {
50 return PyObject_Vectorcall(((gc_func*)self)->func, args, nargs, kwnames);
51}
52
53void gc_func_dealloc(PyObject* self) {
54 PyObject_GC_UnTrack(self);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected