Skip to content
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

load store example, make necessary APIs public #190

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
Open
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ target

# These are backup files generated by rustfmt
**/*.rs.bk

.vscode/*
166 changes: 166 additions & 0 deletions Cargo.lock

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

20 changes: 15 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
[workspace]
members = [
"greenglas", "coaster", "coaster-nn", "coaster-blas", "juice", "rust-blas",
"rcudnn/cudnn", "rcudnn/cudnn-sys", "rcublas/cublas", "rcublas/cublas-sys",
"juice-examples/juice-utils", "juice-examples/mackey-glass-rnn-regression",
"juice-examples/mnist-image-multiclass-classification"]
"greenglas",
"coaster",
"coaster-nn",
"coaster-blas",
"juice",
"rust-blas",
"rcudnn/cudnn",
"rcudnn/cudnn-sys",
"rcublas/cublas",
"rcublas/cublas-sys",
"juice-examples/juice-utils",
"juice-examples/mackey-glass-rnn-regression",
"juice-examples/mnist-image-multiclass-classification",
]

exclude = [ "./rcudnn", "./rcublas", "./juice-examples"]
exclude = ["./rcudnn", "./rcublas", "./juice-examples"]

[patch.crates-io]
coaster-nn = { path = "./coaster-nn" }
Expand Down
14 changes: 9 additions & 5 deletions coaster-blas/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ name = "coaster-blas"
description = "Coaster library for full BLAS support"
version = "0.4.0"
authors = [
"Bernhard Schuster <[email protected]>",
"Lissa Hyacinth <[email protected]>",
"Paul Kassianik <[email protected]>",
"Michael Hirn",
"Maximilian Goisser",
"Bernhard Schuster <[email protected]>",
"Lissa Hyacinth <[email protected]>",
"Paul Kassianik <[email protected]>",
"Michael Hirn",
"Maximilian Goisser",
]
repository = "https://github.com/spearow/coaster-blas"
homepage = "https://spearow.io/projects/coaster-blas"
Expand All @@ -25,6 +25,10 @@ rust-blas = { version = "0.2", path = "../rust-blas", optional = true }
# cuda
rcublas = { version = "0.6", path = "../rcublas/cublas", optional = true }

[dev-dependencies]
rand = "0.8"
criterion = "0.4"

[features]
default = ["native", "cuda"]
native = ["coaster/native", "rust-blas"]
Expand Down
Loading