Skip to content

Commit 561bdb7

Browse files
Deploy: Update graph break site
1 parent 4cfb44a commit 561bdb7

File tree

5 files changed

+113
-2
lines changed

5 files changed

+113
-2
lines changed

docs/dashboard.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ 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>286</p>
1212
</div>
1313
<div class="metric-box">
1414
<h3>Graph Breaks with Additional Info</h3>
1515
<p>11</p>
1616
</div>
1717
<div class="metric-box">
1818
<h3>Graph Breaks with Missing Content</h3>
19-
<p>71</p>
19+
<p>72</p>
2020
</div>
2121
</div>
2222

docs/gb/gb0283.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
layout: default
3+
---
4+
# GB0283
5+
6+
## Graph-Break Type
7+
*Short name describing what triggered the graph break*
8+
9+
Failed to make weakref to graph-created external object
10+
11+
## Context
12+
*Values or code snippet captured at the break point*
13+
14+
user_object: {example_value}
15+
16+
## Explanation
17+
*Explanation of why the graph break was triggered*
18+
19+
Object does not allow us to make a weakref to it
20+
21+
## Hints
22+
*Hints on how to resolve the graph break*
23+
24+
*No hints provided.*
25+
26+
27+
## Additional Information
28+
29+
<!-- ADDITIONAL INFORMATION START - Add custom information below this line -->
30+
31+
<!-- ADDITIONAL INFORMATION END -->
32+
33+
34+
[Click here to add Additional Info](https://github.com/meta-pytorch/compile-graph-break-site/edit/main/docs/gb/gb0283.md)
35+
36+
[Back to Registry](../index.html)

docs/gb/gb0284.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
layout: default
3+
---
4+
# GB0284
5+
6+
## Graph-Break Type
7+
*Short name describing what triggered the graph break*
8+
9+
unsupported arguments to torch.accelerator.current_stream
10+
11+
## Context
12+
*Values or code snippet captured at the break point*
13+
14+
args={args}, kwargs={kwargs}
15+
16+
## Explanation
17+
*Explanation of why the graph break was triggered*
18+
19+
torch.accelerator.current_stream accepts one optional argument `device`
20+
21+
## Hints
22+
*Hints on how to resolve the graph break*
23+
24+
- Dynamo has detected that tracing the code will result in an error when running in eager. Please double check that your code doesn't contain a similar error when actually running eager/uncompiled.
25+
26+
27+
## Additional Information
28+
29+
<!-- ADDITIONAL INFORMATION START - Add custom information below this line -->
30+
31+
<!-- ADDITIONAL INFORMATION END -->
32+
33+
34+
[Click here to add Additional Info](https://github.com/meta-pytorch/compile-graph-break-site/edit/main/docs/gb/gb0284.md)
35+
36+
[Back to Registry](../index.html)

docs/gb/gb0285.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
layout: default
3+
---
4+
# GB0285
5+
6+
## Graph-Break Type
7+
*Short name describing what triggered the graph break*
8+
9+
bad device argument to torch.accelerator.current_stream
10+
11+
## Context
12+
*Values or code snippet captured at the break point*
13+
14+
args={args}, kwargs={kwargs}
15+
16+
## Explanation
17+
*Explanation of why the graph break was triggered*
18+
19+
Expected valid string/torch.device argument ('cpu', 'cuda', etc.)
20+
21+
## Hints
22+
*Hints on how to resolve the graph break*
23+
24+
- Dynamo has detected that tracing the code will result in an error when running in eager. Please double check that your code doesn't contain a similar error when actually running eager/uncompiled.
25+
26+
27+
## Additional Information
28+
29+
<!-- ADDITIONAL INFORMATION START - Add custom information below this line -->
30+
31+
<!-- ADDITIONAL INFORMATION END -->
32+
33+
34+
[Click here to add Additional Info](https://github.com/meta-pytorch/compile-graph-break-site/edit/main/docs/gb/gb0285.md)
35+
36+
[Back to Registry](../index.html)

docs/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,3 +286,6 @@ 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) — Failed to make weakref to graph-created external object
290+
- [GB0284](gb/gb0284.html) — unsupported arguments to torch.accelerator.current_stream
291+
- [GB0285](gb/gb0285.html) — bad device argument to torch.accelerator.current_stream

0 commit comments

Comments
 (0)