Skip to content

Commit

Permalink
Fix: fusion auto bound checks (#2087)
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanielsimard authored Aug 1, 2024
1 parent 04d7ff2 commit 62a30e9
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@ sysinfo = "0.30.13"
systemstat = "0.2.3"

### For the main burn branch. ###
cubecl = { git = "https://github.com/tracel-ai/cubecl", default-features = false, rev = "a20ac61043c5540d47259e135c0823af3dd58fe8" }
cubecl-common = { git = "https://github.com/tracel-ai/cubecl", default-features = false, rev = "a20ac61043c5540d47259e135c0823af3dd58fe8" }
cubecl = { git = "https://github.com/tracel-ai/cubecl", default-features = false, rev = "dd274b6515f853ab1c82db410d6fc7697060f69e" }
cubecl-common = { git = "https://github.com/tracel-ai/cubecl", default-features = false, rev = "dd274b6515f853ab1c82db410d6fc7697060f69e" }
### For local development. ###
# cubecl = { path = "../cubecl/crates/cubecl" }
# cubecl-common = { path = "../cubecl/crates/cubecl-common" }
Expand Down
3 changes: 3 additions & 0 deletions crates/burn-jit/src/fusion/tracing/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -429,6 +429,9 @@ impl TraceBuilder {
Procedure::IndexOffsetGlobalWithLayout(_) => {
// Nothing to do here.
}
Procedure::EarlyReturn(_) => {
// Nothing to do here.
}
}
}
Operation::Metadata(_) => {
Expand Down

0 comments on commit 62a30e9

Please sign in to comment.