Short name describing what triggered the graph break
Tensor.numpy() with trace_numpy=False
Values or code snippet captured at the break point
call_method {self} numpy
Explanation of why the graph break was triggered
Tensor.numpy()
was called, but the trace_numpy
configuration was manually disabled.
Hints on how to resolve the graph break
torch._dynamo.config.trace_numpy = True
to allow