Skip to content

Commit

Permalink
Add SPIR-V compiler backend to burn-wgpu (#2386)
Browse files Browse the repository at this point in the history
  • Loading branch information
wingertge authored Oct 21, 2024
1 parent b7887b0 commit f3968cb
Show file tree
Hide file tree
Showing 15 changed files with 279 additions and 86 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,8 @@ jobs:
linux-std-tests:
runs-on: ubuntu-22.04
needs: prepare-checks
env:
DISABLE_WGPU_SPIRV: '1'
strategy:
matrix:
rust: [stable, prev]
Expand Down
149 changes: 134 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -152,10 +152,10 @@ tch = "0.15.0"
portable-atomic-util = { version = "0.2.2", features = ["alloc"] }

### For the main burn branch. ###
cubecl = { git = "https://github.com/tracel-ai/cubecl", default-features = false, rev = "609183cccb26e2ccaa834f2230b5b8f38f9ea507" }
cubecl-common = { git = "https://github.com/tracel-ai/cubecl", default-features = false, rev = "609183cccb26e2ccaa834f2230b5b8f38f9ea507" }
cubecl = { git = "https://github.com/tracel-ai/cubecl", default-features = false, rev = "e3fdc96ec2d68dcdde8135bd011907b4e662388c" }
cubecl-common = { git = "https://github.com/tracel-ai/cubecl", default-features = false, rev = "e3fdc96ec2d68dcdde8135bd011907b4e662388c" }
### For local development. ###
# cubecl = { path = "../cubecl/crates/cubecl", default-features = false }
# cubecl = { path = "../cubecl/crates/cubecl", default-features = false }
# cubecl-common = { path = "../cubecl/crates/cubecl-common", default-features = false }
### For the release. ###
# cubecl = { version="0.2.0", default-features = false }
Expand Down
Loading

0 comments on commit f3968cb

Please sign in to comment.