Skip to content

Commit

Permalink
[rust] Remove unnecessary clone in cublaslt
Browse files Browse the repository at this point in the history
  • Loading branch information
xyang16 committed Sep 20, 2024
1 parent fb51e89 commit 0faf09d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/tokenizers/rust/src/layers/cublaslt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ pub fn get_cublas_lt_wrapper(device: &Device) -> Option<CublasLtWrapper> {
} else {
None
};
cublaslt.clone()
cublaslt
}
}

Expand Down

0 comments on commit 0faf09d

Please sign in to comment.