mirror of
https://github.com/huggingface/candle.git
synced 2025-06-16 02:38:10 +00:00
25 lines
601 B
TOML
25 lines
601 B
TOML
[package]
|
|
name = "candle-pyo3"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
description = "PyO3 bindings for the candle ML framework."
|
|
repository = "https://github.com/LaurentMazare/candle"
|
|
keywords = ["blas", "tensor", "machine-learning"]
|
|
categories = ["science"]
|
|
license = "MIT/Apache-2.0"
|
|
readme = "README.md"
|
|
|
|
[lib]
|
|
name = "candle"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
candle = { path = "../candle-core", default-features=false }
|
|
pyo3 = { version = "0.19.0", features = ["extension-module"] }
|
|
half = { version = "2.3.1", features = ["num-traits"] }
|
|
|
|
[features]
|
|
default = ["cuda"]
|
|
cuda = ["candle/cuda"]
|