Short name describing what triggered the graph break
Input marked with pytree.register_constant
constructed in the torch.compile
region
Values or code snippet captured at the break point
Input={input_spec_vt}, offending type <{type_name}>.
Explanation of why the graph break was triggered
Calling a nonstrict_trace
-ed function with an input that contains an object of type <{type_name}>, which was marked with pytree.register_constant
. However, the object was constructed inside the torch.compile
region. This is not supported.
Hints on how to resolve the graph break
torch.compile
region, or submit an issue to GitHub.