-
Notifications
You must be signed in to change notification settings - Fork 442
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial cuda runtime crate with a WIP compiler.
- Loading branch information
1 parent
ab50143
commit 587b8f8
Showing
49 changed files
with
2,905 additions
and
103 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
[package] | ||
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"] | ||
categories = ["science"] | ||
description = "CUDA backend for the Burn framework" | ||
edition.workspace = true | ||
keywords = ["deep-learning", "machine-learning", "gpu", "cuda"] | ||
license.workspace = true | ||
name = "burn-cuda" | ||
readme.workspace = true | ||
repository = "https://github.com/tracel-ai/burn/tree/main/burn-cuda" | ||
version.workspace = true | ||
|
||
[features] | ||
default = ["fusion", "burn-jit/default"] | ||
fusion = ["burn-fusion", "burn-jit/fusion"] | ||
autotune = ["burn-jit/autotune"] | ||
doc = ["burn-jit/doc"] | ||
std = ["burn-jit/std"] | ||
|
||
[dependencies] | ||
burn-jit = { path = "../burn-jit", version = "0.14.0", default-features = false } | ||
burn-compute = { path = "../burn-compute", version = "0.14.0" } | ||
burn-tensor = { path = "../burn-tensor", version = "0.14.0" } | ||
burn-common = { path = "../burn-common", version = "0.14.0" } | ||
burn-fusion = { path = "../burn-fusion", version = "0.14.0", optional = true } | ||
half = { workspace = true } | ||
|
||
bytemuck = { workspace = true } | ||
cudarc = "0.10.0" | ||
|
||
log = { workspace = true } | ||
derive-new = { workspace = true } | ||
|
||
[dev-dependencies] | ||
burn-jit = { path = "../burn-jit", version = "0.14.0", default-features = false, 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Burn-Cuda | ||
|
||
This backend is still a work in progress and not ready to be used. | ||
|
||
See #1525 |
Oops, something went wrong.