File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ title: Graph Break Dashboard
88<div class =" metric-container " >
99 <div class="metric-box">
1010 <h3>Total Graph Breaks</h3>
11- <p>283 </p>
11+ <p>284 </p>
1212 </div>
1313 <div class="metric-box">
1414 <h3>Graph Breaks with Additional Info</h3>
Original file line number Diff line number Diff line change @@ -6,22 +6,24 @@ layout: default
66## Graph-Break Type
77* Short name describing what triggered the graph break*
88
9- Failed to make weakref to graph-created external object
9+ cannot resume from torch. _ dynamo.step_unsupported()
1010
1111## Context
1212* Values or code snippet captured at the break point*
1313
14- user_object: {example_value}
14+
1515
1616## Explanation
1717* Explanation of why the graph break was triggered*
1818
19- Object does not allow us to make a weakref to it
19+ traced torch. _ dynamo.step_unsupported(), but Dynamo is instructed to error on graph break. This graph break is used for debugging only.
2020
2121## Hints
2222* Hints on how to resolve the graph break*
2323
24- * No hints provided.*
24+ - Remove the torch._ dynamo.step_unsupported() call.
25+ - Make sure fullgraph=False and error_on_graph_break=False.
26+ - This is likely to be a Dynamo bug. Please report an issue to PyTorch.
2527
2628
2729## Additional Information
Original file line number Diff line number Diff line change @@ -286,3 +286,4 @@ Below are all known graph breaks detected by Dynamo.
286286- [ GB0280] ( gb/gb0280.html ) — 1-arg super not implemented
287287- [ GB0281] ( gb/gb0281.html ) — Invalid or non-const argument in nn.Module __ getitem__
288288- [ GB0282] ( gb/gb0282.html ) — Placement with custom __ getattr__ not supported
289+ - [ GB0283] ( gb/gb0283.html ) — cannot resume from torch._ dynamo.step_unsupported()
You can’t perform that action at this time.
0 commit comments