MCPcopy Create free account
hub / github.com/NVlabs/edm / profiled_function

Function profiled_function

torch_utils/misc.py:99–104  ·  view source on GitHub ↗
(fn)

Source from the content-addressed store, hash-verified

97# Function decorator that calls torch.autograd.profiler.record_function().
98
99def profiled_function(fn):
100 def decorator(*args, **kwargs):
101 with torch.autograd.profiler.record_function(fn.__name__):
102 return fn(*args, **kwargs)
103 decorator.__name__ = fn.__name__
104 return decorator
105
106#----------------------------------------------------------------------------
107# Sampler for torch.utils.data.DataLoader that loops over the dataset

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected