mirror of
https://github.com/huggingface/candle.git
synced 2025-06-15 10:26:33 +00:00
60 lines
2.1 KiB
TOML
60 lines
2.1 KiB
TOML
[package]
|
|
name = "candle-examples"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description.workspace = true
|
|
repository.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
license.workspace = true
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
accelerate-src = { workspace = true, optional = true }
|
|
candle = { path = "../candle-core", version = "0.1.3", package = "candle-core" }
|
|
candle-datasets = { path = "../candle-datasets", version = "0.1.3" }
|
|
candle-nn = { path = "../candle-nn", version = "0.1.3" }
|
|
candle-transformers = { path = "../candle-transformers", version = "0.1.3" }
|
|
candle-flash-attn = { path = "../candle-flash-attn", version = "0.1.3", optional = true }
|
|
safetensors = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
num-traits = { workspace = true }
|
|
intel-mkl-src = { workspace = true, optional = true }
|
|
cudarc = { workspace = true, optional = true }
|
|
half = { workspace = true, optional = true }
|
|
image = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
anyhow = { workspace = true }
|
|
byteorder = { workspace = true }
|
|
clap = { workspace = true }
|
|
hf-hub = { workspace = true, features=["tokio"]}
|
|
imageproc = { workspace = true }
|
|
memmap2 = { workspace = true }
|
|
rand = { workspace = true }
|
|
rusttype = { workspace = true }
|
|
tokenizers = { workspace = true, features = ["onig"] }
|
|
tracing = { workspace = true }
|
|
tracing-chrome = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
wav = { workspace = true }
|
|
# Necessary to disambiguate with tokio in wasm examples which are 1.28.1
|
|
tokio = "1.29.1"
|
|
|
|
[build-dependencies]
|
|
anyhow = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|
|
accelerate = ["dep:accelerate-src", "candle/accelerate", "candle-nn/accelerate", "candle-transformers/accelerate"]
|
|
cuda = ["candle/cuda", "candle-nn/cuda", "candle-transformers/cuda"]
|
|
cudnn = ["candle/cudnn"]
|
|
flash-attn = ["cuda", "dep:candle-flash-attn"]
|
|
mkl = ["dep:intel-mkl-src", "candle/mkl", "candle-nn/mkl", "candle-transformers/mkl"]
|
|
nccl = ["cuda", "cudarc/nccl", "dep:half"]
|
|
|
|
[[example]]
|
|
name = "llama_multiprocess"
|
|
required-features = ["cuda", "nccl", "flash-attn"]
|