-
Notifications
You must be signed in to change notification settings - Fork 469
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
Matmul + CubeCL Update #2551
Matmul + CubeCL Update #2551
Conversation
MatmulStrategy::Cube => { | ||
let out = init_matmul_output::<R, E>(&lhs, &rhs); | ||
let client = &lhs.client; | ||
cubecl::linalg::matmul::launch_ref::<R, E>( | ||
&Default::default(), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since default in cubecl is Accelerated, if you're on wgpu and have autotune disabled, it will fail?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since a very recent PR launch_ref of matmul in CubeCL returns a Result, so we get an error if Accelerated is not available. That way we can have a fallback here
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #2551 +/- ##
==========================================
+ Coverage 81.85% 81.86% +0.01%
==========================================
Files 834 833 -1
Lines 106589 106465 -124
==========================================
- Hits 87247 87162 -85
+ Misses 19342 19303 -39 ☔ View full report in Codecov by Sentry. |
No description provided.