[package]
edition = "2024"
rust-version = "1.85"
name = "axonml-quant"
version = "0.6.2"
authors = ["AutomataNexus Development Team"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Model quantization for the Axonml ML framework"
homepage = "https://AutomataNexus.com"
documentation = "https://automatanexus.github.io/AxonML"
readme = "README.md"
keywords = [
"quantization",
"machine-learning",
"deep-learning",
"int8",
"int4",
]
categories = [
"science",
"mathematics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/AutomataNexus/AxonML"
resolver = "2"
[package.metadata.docs.rs]
default-target = "x86_64-unknown-linux-gnu"
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = ["std"]
std = []
[lib]
name = "axonml_quant"
path = "src/lib.rs"
[[example]]
name = "bitnet_bench"
path = "examples/bitnet_bench.rs"
[[example]]
name = "test_quant_e2e"
path = "examples/test_quant_e2e.rs"
[dependencies.axonml-autograd]
version = "0.6.1"
[dependencies.axonml-core]
version = "0.6.1"
[dependencies.axonml-nn]
version = "0.6.1"
[dependencies.axonml-tensor]
version = "0.6.1"
[dependencies.bytemuck]
version = "1.14"
features = ["derive"]
[dependencies.half]
version = "2.4"
features = [
"bytemuck",
"num-traits",
]
[dependencies.rayon]
version = "1.10"
[dependencies.thiserror]
version = "1.0"
[dev-dependencies.approx]
version = "0.5"