Home
last modified time | relevance | path

Searched refs:PyFrameState (Results 1 – 5 of 5) sorted by relevance

/external/pytorch/torch/csrc/profiler/
Dcollection.h242 struct PyFrameState {
292 PyFrameState caller)
299 PyFrameState caller_;
308 PyFrameState frame_state_;
316 PyFrameState caller,
323 PyFrameState callsite_;
335 PyFrameState caller,
/external/pytorch/torch/csrc/profiler/python/
Dinit.cpp490 py::class_<PyFrameState>(m, "_PyFrameState") in initPythonBindings()
491 .def_readonly("line_number", &PyFrameState::line_no_) in initPythonBindings()
493 "file_name", [](const PyFrameState& s) { return s.filename_.str(); }) in initPythonBindings()
494 .def_property_readonly("function_name", [](const PyFrameState& s) { in initPythonBindings()
/external/python/cpython3/Include/internal/
Dpycore_frame.h49 } PyFrameState; typedef
/external/python/cpython3/Objects/
Dgenobject.c369 PyFrameState state = gen->gi_frame_state; in gen_close()
444 PyFrameState state = gen->gi_frame_state; in _gen_throw()
466 PyFrameState state = gen->gi_frame_state; in _gen_throw()
484 PyFrameState state = gen->gi_frame_state; in _gen_throw()
/external/pytorch/torch/csrc/autograd/
Dprofiler_python.cpp198 using cache_t = ska::flat_hash_map<key_t, PyFrameState>;