Short name describing what triggered the graph break
Attempted to wrap a set with tensors
Values or code snippet captured at the break point
Python set containing torch.Tensor elements
Explanation of why the graph break was triggered
Dynamo cannot trace sets of tensors. To get a stable ordering, Dynamo needs to convert the set into a list and the order might not be stable if the set contains tensors.
Hints on how to resolve the graph break