-
Notifications
You must be signed in to change notification settings - Fork 440
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
Wgpu fusion auto-vectorized operations #1123
Conversation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #1123 +/- ##
==========================================
- Coverage 85.59% 85.51% -0.09%
==========================================
Files 512 513 +1
Lines 55968 56593 +625
==========================================
+ Hits 47907 48394 +487
- Misses 8061 8199 +138 ☔ View full report in Codecov by Sentry. |
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.
Looks very good to me, vec4 all the way!!
burn-wgpu/src/compute/server.rs
Outdated
@@ -158,6 +158,7 @@ where | |||
} | |||
|
|||
let source = kernel.source().complete(); | |||
// println!("{source}"); |
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.
Remaining print comment
Fix #1111