mirror of
https://github.com/huggingface/candle.git
synced 2025-06-15 10:26:33 +00:00
33 lines
669 B
TOML
33 lines
669 B
TOML
[package]
|
|
name = "candle"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
description = "Minimalist ML framework."
|
|
repository = "https://github.com/LaurentMazare/candle"
|
|
keywords = ["blas", "tensor", "machine-learning"]
|
|
categories = ["science"]
|
|
license = "MIT/Apache-2.0"
|
|
readme = "README.md"
|
|
|
|
[workspace]
|
|
members = [
|
|
"kernels",
|
|
]
|
|
|
|
[dependencies]
|
|
safetensors = "0.3.1"
|
|
thiserror = "1"
|
|
cudarc = { version = "0.9.9", optional = true }
|
|
candle-kernels = { path = "kernels", optional = true }
|
|
|
|
[dev-dependencies]
|
|
anyhow = "1"
|
|
clap = { version = "4.2.4", features = ["derive"] }
|
|
rand = "0.8.5"
|
|
tokenizers = "0.13.3"
|
|
|
|
[features]
|
|
default = []
|
|
cuda = ["dep:cudarc", "dep:candle-kernels"]
|