"llama/llama.cpp/vscode:/vscode.git/clone" did not exist on "4b903f088aa8d14404e5650d42db8c15530803d5"
Initial commit
parents
Showing
.gitignore
0 → 100644
Cargo.toml
0 → 100644
| [package] | ||
| name = "candle-rotary" | ||
| version = "0.0.1" | ||
| edition = "2021" | ||
| description = "Rotary layer for the candle ML framework." | ||
| keywords = ["tensor", "machine-learning"] | ||
| categories = ["science"] | ||
| license = "MIT OR Apache-2.0" | ||
| readme = "README.md" | ||
| [dependencies] | ||
| candle = { version = "*", package = "candle-core", features = ["cuda"]} | ||
| half = { version = "2.3.1", features = ["num-traits"] } | ||
| [build-dependencies] | ||
| anyhow = { version = "1", features = ["backtrace"] } | ||
| bindgen_cuda = "0.1.1" | ||
| [dev-dependencies] | ||
| anyhow = { version = "1", features = ["backtrace"] } | ||
| candle-nn = { version = "0.3.0", features = ["cuda"] } |
LICENSE-APACHE
0 → 100644
LICENSE-MIT
0 → 100644
README.md
0 → 100644
build.rs
0 → 100644
kernels/cuda_compat.h
0 → 100644
kernels/rotary.cu
0 → 100644
src/ffi.rs
0 → 100644
src/lib.rs
0 → 100644
tests/rotary_tests.rs
0 → 100644
Please register or sign in to comment