-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a7bdf67
commit 5be2f68
Showing
20 changed files
with
37 additions
and
71 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Burn Common | ||
# CubeCL Common | ||
|
||
The `burn-common` package hosts code that _must_ be shared between burn packages (with `std` or | ||
The `cubecl-common` package hosts code that _must_ be shared between cubecl packages (with `std` or | ||
`no_std` enabled). No other code should be placed in this package unless unavoidable. | ||
|
||
The package must build with `cargo build --no-default-features` as well. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,8 @@ authors = [ | |
"nathanielsimard <[email protected]>", | ||
"louisfd <[email protected]>", | ||
] | ||
categories = ["science"] | ||
description = "Cube Compute Language (CubeCL) is a subset of Rust that can be executed on accelerators for compute intensive tasks." | ||
categories = ["science", "mathematics", "algorithms"] | ||
description = "CubeCL core create" | ||
edition.workspace = true | ||
keywords = [] | ||
license.workspace = true | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ authors = ["nathanielsimard <[email protected]>"] | |
categories = ["science"] | ||
description = "CUDA runtime for CubeCL" | ||
edition.workspace = true | ||
keywords = ["deep-learning", "machine-learning", "gpu", "cuda"] | ||
keywords = ["gpu", "cuda"] | ||
license.workspace = true | ||
name = "cubecl-cuda" | ||
readme.workspace = true | ||
|
@@ -40,6 +40,3 @@ cubecl-core = { path = "../cubecl-core", version = "0.1.0", features = [ | |
cubecl-linalg = { path = "../cubecl-linalg", version = "0.1.0", features = [ | ||
"export_tests", | ||
] } | ||
|
||
[package.metadata.docs.rs] | ||
features = ["doc"] |
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,5 +1,3 @@ | ||
# Burn-Cuda | ||
# Cuda runtime | ||
|
||
This backend is still a work in progress and not ready to be used. | ||
|
||
See #1525 | ||
The runtime uses the lower level primitives from [cudarc](https://github.com/coreylowman/cudarc) to compile generated CUDA code into a ptx and execute it at runtime. |
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ authors = [ | |
"nathanielsimard <[email protected]>", | ||
"louisfd <[email protected]>", | ||
] | ||
categories = ["science"] | ||
categories = ["science", "mathematics", "algorithms"] | ||
description = "CubeCL Linear Algebra Components" | ||
edition.workspace = true | ||
keywords = [] | ||
|
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ authors = [ | |
"louisfd <[email protected]", | ||
] | ||
categories = ["science"] | ||
description = "TODO" | ||
description = "Procedural macros for CubeCL" | ||
edition.workspace = true | ||
keywords = [] | ||
license.workspace = true | ||
|
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,7 +1,7 @@ | ||
[package] | ||
authors = ["louisfd <[email protected]>", "Nathaniel Simard"] | ||
categories = ["science"] | ||
description = "Compute crate that helps creating high performance async backends." | ||
description = "Crate that helps creating high performance async runtimes for CubeCL." | ||
edition.workspace = true | ||
keywords = ["deep-learning", "machine-learning", "data"] | ||
license.workspace = true | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
authors = ["nathanielsimard <[email protected]>"] | ||
categories = ["science"] | ||
description = "WGPU backend for the Burn framework" | ||
description = "WGPU runtime for the CubeCL" | ||
edition.workspace = true | ||
keywords = ["deep-learning", "machine-learning", "gpu", "wgpu", "webgpu"] | ||
keywords = ["gpu", "wgpu", "webgpu", "gpgpu"] | ||
license.workspace = true | ||
name = "cubecl-wgpu" | ||
readme.workspace = true | ||
repository = "https://github.com/tracel-ai/burn/tree/main/crates/burn-wgpu" | ||
repository = "https://github.com/tracel-ai/cubecl/tree/main/crates/cubecl-wgpu" | ||
version.workspace = true | ||
|
||
[features] | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,24 @@ | ||
[package] | ||
authors = ["nathanielsimard <[email protected]>"] | ||
categories = [] | ||
description = "" | ||
categories = ["science", "mathematics", "algorithms"] | ||
description = "Multi-platform high-performance compute language extension for Rust." | ||
edition.workspace = true | ||
keywords = [ | ||
"gpu", | ||
"cuda", | ||
"wgpu", | ||
"gpgpu", | ||
"deep-learning", | ||
"machine-learning", | ||
"tensor", | ||
] | ||
license.workspace = true | ||
name = "cubecl" | ||
readme.workspace = true | ||
repository = "https://github.com/tracel-ai/cubecl" | ||
version.workspace = true | ||
rust-version = "1.75" | ||
rust-version = "1.79" | ||
|
||
[features] | ||
default = ["cubecl-wgpu?/default", "cubecl-cuda?/default", "linalg"] | ||
default = ["linalg", "cubecl-wgpu?/default", "cubecl-cuda?/default"] | ||
std = ["cubecl-wgpu?/std", "cubecl-cuda?/std"] | ||
template = ["cubecl-core/template"] | ||
linalg = ["dep:cubecl-linalg"] | ||
|
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