Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] compile graph breaks #2027

Draft
wants to merge 6 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
transformer x graph break
Felipe Mello committed Nov 19, 2024
commit cdb78413f529028841586a27c7ec32267714bcc5
2 changes: 2 additions & 0 deletions torchtune/modules/transformer.py
Original file line number Diff line number Diff line change
@@ -633,7 +633,9 @@ def forward(
for i, layer in enumerate(self.layers):
if i in self.output_hidden_states:
hidden.append(h)

# shape: [b, s, d]
torch._dynamo.mark_dynamic(h, 1) # avoid graph breaks
h = layer(
h,
mask=mask,