Home
last modified time | relevance | path

Searched refs:PyCode_GetNFreevars (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/pytorch/torch/csrc/dynamo/
H A Deval_frame.c366 …Py_ssize_t n_old = F_CODE(frame)->co_nlocals + PyCode_GetNFreevars(F_CODE(frame)) + PyCode_GetNCel… in eval_custom_code_impl()
367 Py_ssize_t n_new = code->co_nlocals + PyCode_GetNFreevars(code) + PyCode_GetNCellvars(code); in eval_custom_code_impl()
423 Py_ssize_t nfrees_old = PyCode_GetNFreevars(F_CODE(frame)); in eval_custom_code_impl()
/aosp_15_r20/external/pytorch/torch/csrc/utils/
H A Dpython_compat.h28 PyCode_GetNFreevars(PyCodeObject* code) { in PyCode_GetNFreevars() function