-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Matmul: kernel select heuristic (#312)
- Loading branch information
Showing
12 changed files
with
524 additions
and
403 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 3 additions & 4 deletions
7
crates/cubecl-linalg/src/matmul/kernels/matmul/algorithm/mod.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
mod base; | ||
mod selection; | ||
mod selector; | ||
|
||
pub mod cmma; | ||
pub mod plane_mma; | ||
pub mod standard; | ||
|
||
pub use base::Algorithm; | ||
pub use selection::*; | ||
pub use selector::*; |
55 changes: 0 additions & 55 deletions
55
crates/cubecl-linalg/src/matmul/kernels/matmul/algorithm/plane_mma.rs
This file was deleted.
Oops, something went wrong.
39 changes: 0 additions & 39 deletions
39
crates/cubecl-linalg/src/matmul/kernels/matmul/algorithm/selection.rs
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.