compiled() — pytorch Function Reference
Architecture documentation for the compiled() function in kernels.py from the pytorch codebase.
Entity Profile
Relationship Graph
Source Code
benchmarks/dynamo/genai_layers/kernels.py lines 161–174
def compiled(self, args, kwargs=None) -> Any:
if kwargs is not None:
raise AssertionError(f"Expected kwargs to be None, but got {kwargs}")
x, target, dloss = args
compiled_cross_entropy = torch.compile(
lambda x, target: F.cross_entropy(x, target, reduction="none"),
mode=self.compile_mode,
fullgraph=True,
)
loss = compiled_cross_entropy(x, target)
return lambda: torch.autograd.grad(
loss, x, grad_outputs=dloss, retain_graph=True
)
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free