Initial commit
parents
Showing
.gitignore
0 → 100644
Cargo.toml
0 → 100644
| [package] | |||
| name = "candle-layer-norm" | |||
| version = "0.0.1" | |||
| edition = "2021" | |||
| description = "Layer Norm layer for the candle ML framework." | |||
| [dependencies] | |||
| candle = { version = "*", package = "candle-core", features = ["cuda"] } | |||
| half = { version = "2.3.1", features = ["num-traits"] } | |||
| [build-dependencies] | |||
| anyhow = { version = "1", features = ["backtrace"] } | |||
| num_cpus = "1.15.0" | |||
| rayon = "1.7.0" |
LICENSE-APACHE
0 → 100644
LICENSE-MIT
0 → 100644
README.md
0 → 100644
build.rs
0 → 100644
kernels/ln.h
0 → 100644
kernels/ln_api.cu
0 → 100644
kernels/ln_fwd_kernels.cuh
0 → 100644
kernels/ln_kernel_traits.h
0 → 100644
kernels/ln_utils.cuh
0 → 100644
This diff is collapsed.
kernels/static_switch.h
0 → 100644
src/ffi.rs
0 → 100644
src/lib.rs
0 → 100644
Please register or sign in to comment