Short name describing what triggered the graph break
setattr() on Tensor.requires_grad
Values or code snippet captured at the break point
setattr({obj}, {name}, {val})
Explanation of why the graph break was triggered
setattr() on Tensor.requires_grad not supported. Mutating requires_grad can introduce a new leaf from non-leaf or vice versa in the middle of the graph, which AOTAutograd does not currently know how to handle.
Hints on how to resolve the graph break