mirror of
https://github.com/huggingface/candle.git
synced 2025-06-16 10:38:54 +00:00
26 lines
580 B
TOML
26 lines
580 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"]
|
|
doc = false
|
|
|
|
[dependencies]
|
|
candle = { path = "../candle-core", package = "candle-core" }
|
|
pyo3 = { version = "0.19.0", features = ["extension-module"] }
|
|
half = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|
|
cuda = ["candle/cuda"]
|