Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanielsimard committed Jan 21, 2025
1 parent 24117b3 commit 9bc529f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/burn-fusion/src/stream/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ impl<H: Clone> ContextOwned<H> {
}
}

impl<'a, H: Clone> Context<'a, H> {
impl<H: Clone> Context<'_, H> {
/// Fork the context into an [owned context](ContextOwned).
pub fn fork(&self) -> ContextOwned<H> {
ContextOwned {
Expand Down
2 changes: 1 addition & 1 deletion crates/burn-tensor/src/repr/handle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ impl<H: Clone> HandleContainer<H> {

Self {
handles,
counter: self.counter.clone(),
counter: self.counter,
handles_orphan: self.handles_orphan.clone(),
}
}
Expand Down

0 comments on commit 9bc529f

Please sign in to comment.