Bump the crate version + update CHANGELOG. (#628)
This commit is contained in:
parent
4c338b0cd9
commit
a3f97c143d
|
@ -3,6 +3,10 @@ This documents the main changes to the `candle` crate.
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
### Added
|
### Added
|
||||||
|
- Refactor the VarBuilder api
|
||||||
|
[627](https://github.com/huggingface/candle/pull/627).
|
||||||
|
- Add some quantization command
|
||||||
|
[625](https://github.com/huggingface/candle/pull/625).
|
||||||
- Support more quantized types, e.g. Q2K, Q4K, Q5K...
|
- Support more quantized types, e.g. Q2K, Q4K, Q5K...
|
||||||
[586](https://github.com/huggingface/candle/pull/586).
|
[586](https://github.com/huggingface/candle/pull/586).
|
||||||
- Add pose estimation to the yolo example
|
- Add pose estimation to the yolo example
|
||||||
|
|
|
@ -17,7 +17,7 @@ exclude = [
|
||||||
resolver = "2"
|
resolver = "2"
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
version = "0.1.3"
|
version = "0.2.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Minimalist ML framework."
|
description = "Minimalist ML framework."
|
||||||
repository = "https://github.com/huggingface/candle"
|
repository = "https://github.com/huggingface/candle"
|
||||||
|
|
|
@ -12,7 +12,7 @@ readme = "README.md"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
accelerate-src = { workspace = true, optional = true }
|
accelerate-src = { workspace = true, optional = true }
|
||||||
byteorder = { workspace = true }
|
byteorder = { workspace = true }
|
||||||
candle-kernels = { path = "../candle-kernels", version = "0.1.3", optional = true }
|
candle-kernels = { path = "../candle-kernels", version = "0.2.0", optional = true }
|
||||||
cudarc = { workspace = true, optional = true }
|
cudarc = { workspace = true, optional = true }
|
||||||
gemm = { workspace = true }
|
gemm = { workspace = true }
|
||||||
half = { workspace = true }
|
half = { workspace = true }
|
||||||
|
|
|
@ -11,8 +11,8 @@ readme = "README.md"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
byteorder = { workspace = true }
|
byteorder = { workspace = true }
|
||||||
candle = { path = "../candle-core", version = "0.1.3", package = "candle-core" }
|
candle = { path = "../candle-core", version = "0.2.0", package = "candle-core" }
|
||||||
candle-nn = { path = "../candle-nn", version = "0.1.3" }
|
candle-nn = { path = "../candle-nn", version = "0.2.0" }
|
||||||
hf-hub = { workspace = true}
|
hf-hub = { workspace = true}
|
||||||
intel-mkl-src = { workspace = true, optional = true }
|
intel-mkl-src = { workspace = true, optional = true }
|
||||||
memmap2 = { workspace = true }
|
memmap2 = { workspace = true }
|
||||||
|
|
|
@ -11,11 +11,11 @@ readme = "README.md"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
accelerate-src = { workspace = true, optional = true }
|
accelerate-src = { workspace = true, optional = true }
|
||||||
candle = { path = "../candle-core", version = "0.1.3", package = "candle-core" }
|
candle = { path = "../candle-core", version = "0.2.0", package = "candle-core" }
|
||||||
candle-datasets = { path = "../candle-datasets", version = "0.1.3" }
|
candle-datasets = { path = "../candle-datasets", version = "0.2.0" }
|
||||||
candle-nn = { path = "../candle-nn", version = "0.1.3" }
|
candle-nn = { path = "../candle-nn", version = "0.2.0" }
|
||||||
candle-transformers = { path = "../candle-transformers", version = "0.1.3" }
|
candle-transformers = { path = "../candle-transformers", version = "0.2.0" }
|
||||||
candle-flash-attn = { path = "../candle-flash-attn", version = "0.1.3", optional = true }
|
candle-flash-attn = { path = "../candle-flash-attn", version = "0.2.0", optional = true }
|
||||||
safetensors = { workspace = true }
|
safetensors = { workspace = true }
|
||||||
serde = { workspace = true }
|
serde = { workspace = true }
|
||||||
serde_json = { workspace = true }
|
serde_json = { workspace = true }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "candle-flash-attn"
|
name = "candle-flash-attn"
|
||||||
version = "0.1.3"
|
version = "0.2.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
description = "Flash attention layer for the candle ML framework."
|
description = "Flash attention layer for the candle ML framework."
|
||||||
|
@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
candle = { path = "../candle-core", features = ["cuda"], version = "0.1.3", package = "candle-core" }
|
candle = { path = "../candle-core", features = ["cuda"], version = "0.2.0", package = "candle-core" }
|
||||||
half = { version = "2.3.1", features = ["num-traits"] }
|
half = { version = "2.3.1", features = ["num-traits"] }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
|
@ -21,4 +21,4 @@ rayon = "1.7.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
anyhow = { version = "1", features = ["backtrace"] }
|
anyhow = { version = "1", features = ["backtrace"] }
|
||||||
candle-nn = { path = "../candle-nn", version = "0.1.3", features = ["cuda"] }
|
candle-nn = { path = "../candle-nn", version = "0.2.0", features = ["cuda"] }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "candle-kernels"
|
name = "candle-kernels"
|
||||||
version = "0.1.3"
|
version = "0.2.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
description = "CUDA kernels for Candle"
|
description = "CUDA kernels for Candle"
|
||||||
|
|
|
@ -11,7 +11,7 @@ readme = "README.md"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
accelerate-src = { workspace = true, optional = true }
|
accelerate-src = { workspace = true, optional = true }
|
||||||
candle = { path = "../candle-core", version = "0.1.3", package = "candle-core" }
|
candle = { path = "../candle-core", version = "0.2.0", package = "candle-core" }
|
||||||
thiserror = { workspace = true }
|
thiserror = { workspace = true }
|
||||||
intel-mkl-src = { workspace = true, optional = true }
|
intel-mkl-src = { workspace = true, optional = true }
|
||||||
safetensors = { workspace = true }
|
safetensors = { workspace = true }
|
||||||
|
|
|
@ -15,7 +15,7 @@ crate-type = ["cdylib"]
|
||||||
doc = false
|
doc = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
candle = { path = "../candle-core", version = "0.1.3", package = "candle-core" }
|
candle = { path = "../candle-core", version = "0.2.0", package = "candle-core" }
|
||||||
half = { workspace = true }
|
half = { workspace = true }
|
||||||
pyo3 = { version = "0.19.0", features = ["extension-module"] }
|
pyo3 = { version = "0.19.0", features = ["extension-module"] }
|
||||||
|
|
||||||
|
|
|
@ -11,8 +11,8 @@ readme = "README.md"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
accelerate-src = { workspace = true, optional = true }
|
accelerate-src = { workspace = true, optional = true }
|
||||||
candle = { path = "../candle-core", version = "0.1.3", package = "candle-core" }
|
candle = { path = "../candle-core", version = "0.2.0", package = "candle-core" }
|
||||||
candle-nn = { path = "../candle-nn", version = "0.1.3" }
|
candle-nn = { path = "../candle-nn", version = "0.2.0" }
|
||||||
intel-mkl-src = { workspace = true, optional = true }
|
intel-mkl-src = { workspace = true, optional = true }
|
||||||
rand = { workspace = true }
|
rand = { workspace = true }
|
||||||
wav = { workspace = true }
|
wav = { workspace = true }
|
||||||
|
|
|
@ -9,8 +9,8 @@ categories.workspace = true
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
candle = { path = "../../candle-core", version = "0.1.3", package = "candle-core" }
|
candle = { path = "../../candle-core", version = "0.2.0", package = "candle-core" }
|
||||||
candle-nn = { path = "../../candle-nn", version = "0.1.3" }
|
candle-nn = { path = "../../candle-nn", version = "0.2.0" }
|
||||||
num-traits = { workspace = true }
|
num-traits = { workspace = true }
|
||||||
tokenizers = { workspace = true, features = ["unstable_wasm"] }
|
tokenizers = { workspace = true, features = ["unstable_wasm"] }
|
||||||
|
|
||||||
|
|
|
@ -9,8 +9,8 @@ categories.workspace = true
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
candle = { path = "../../candle-core", version = "0.1.3", package = "candle-core" }
|
candle = { path = "../../candle-core", version = "0.2.0", package = "candle-core" }
|
||||||
candle-nn = { path = "../../candle-nn", version = "0.1.3" }
|
candle-nn = { path = "../../candle-nn", version = "0.2.0" }
|
||||||
num-traits = { workspace = true }
|
num-traits = { workspace = true }
|
||||||
tokenizers = { workspace = true, features = ["unstable_wasm"] }
|
tokenizers = { workspace = true, features = ["unstable_wasm"] }
|
||||||
|
|
||||||
|
|
|
@ -9,8 +9,8 @@ categories.workspace = true
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
candle = { path = "../../candle-core", version = "0.1.3", package = "candle-core" }
|
candle = { path = "../../candle-core", version = "0.2.0", package = "candle-core" }
|
||||||
candle-nn = { path = "../../candle-nn", version = "0.1.3" }
|
candle-nn = { path = "../../candle-nn", version = "0.2.0" }
|
||||||
num-traits = { workspace = true }
|
num-traits = { workspace = true }
|
||||||
serde = { workspace = true }
|
serde = { workspace = true }
|
||||||
serde_json = { workspace = true }
|
serde_json = { workspace = true }
|
||||||
|
|
Loading…
Reference in New Issue