Short name describing what triggered the graph break
call torch.from_numpy
with torch._dynamo.config.trace_numpy=False
Values or code snippet captured at the break point
trace_numpy={config.trace_numpy}
Explanation of why the graph break was triggered
Attempted to call torch.from_numpy
with config torch._dynamo.config.trace_numpy
set to False
.
Hints on how to resolve the graph break
torch._dynamo.config.trace_numpy
to True
.