-
Notifications
You must be signed in to change notification settings - Fork 439
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
Splitted the JIT stuff from the Wgpu stuff #1417
Conversation
… refactor/jit/backend
… refactor/jit/backend
crates/burn-jit/Cargo.toml
Outdated
[package] | ||
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"] | ||
categories = ["science"] | ||
description = "WGPU backend for the Burn framework" |
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.
Description is out of date
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1417 +/- ##
==========================================
- Coverage 85.83% 85.67% -0.16%
==========================================
Files 613 637 +24
Lines 71148 70286 -862
==========================================
- Hits 61068 60219 -849
+ Misses 10080 10067 -13 ☔ View full report in Codecov by Sentry. |
The JIT backend still have a dependency on wgsl, since some shaders are written in it and not yet ported to our new compiler, but this isn't a problem for now.
Deleted some matmul kernels that aren't used or not relevant anymore.
All tests in
burn-jit
now follow the same pattern as withburn-tensor
andburn-autodiff
; each tests in exported and run on the concrete implementation.