mirror of
https://github.com/huggingface/candle.git
synced 2025-06-16 10:38:54 +00:00
25 lines
564 B
TOML
25 lines
564 B
TOML
[package]
|
|
name = "candle-nn"
|
|
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"
|
|
|
|
[dependencies]
|
|
candle = { path = "../candle-core" }
|
|
thiserror = { workspace = true }
|
|
intel-mkl-src = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
anyhow = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|
|
cuda = ["candle/cuda"]
|
|
mkl = ["dep:intel-mkl-src", "candle/mkl"]
|