MCPcopy Index your code
hub / github.com/pytorch/pytorch / scoped_execution_step

Function scoped_execution_step

caffe2/python/core.py:3040–3043  ·  view source on GitHub ↗

Same as execution_step() except that the step name is scoped.

(name, *args, **kwargs)

Source from the content-addressed store, hash-verified

3038
3039
3040def scoped_execution_step(name, *args, **kwargs):
3041 """Same as execution_step() except that the step name is scoped."""
3042 default_name = ScopedName(name) if name else name
3043 return execution_step(default_name, *args, **kwargs)
3044
3045
3046def _extract_stacktrace():

Callers

nothing calls this directly

Calls 2

ScopedNameFunction · 0.85
execution_stepFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…