Short name describing what triggered the graph break
attempted to reorder a debugging function that can’t actually be reordered
Values or code snippet captured at the break point
fn: {self.value}, args: {args}, kwargs: {kwargs}
Explanation of why the graph break was triggered
torch.compile can only reorder functions that are called without keyword arguments and whose arguments are Tensors, constants, or string formatters.
Hints on how to resolve the graph break