[package]
edition = "2024"
rust-version = "1.90.0"
name = "kime-cpu"
version = "0.0.9"
authors = ["tamnd <tamnd87@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The CPU backend for kime: x86 and ARM kernels, FP32 and INT8."
homepage = "https://github.com/tamnd/kime"
readme = "README.md"
keywords = [
"inference",
"classification",
"calibration",
"agents",
"encoder",
]
categories = [
"science",
"text-processing",
"web-programming::http-server",
]
license = "Apache-2.0"
repository = "https://github.com/tamnd/kime"
[lib]
name = "kime_cpu"
path = "src/lib.rs"
[[example]]
name = "compat_bench"
path = "examples/compat_bench.rs"
[[example]]
name = "gemm_bench"
path = "examples/gemm_bench.rs"
[[example]]
name = "plan_bench"
path = "examples/plan_bench.rs"
[[test]]
name = "laya_parity"
path = "tests/laya_parity.rs"
[[test]]
name = "no_alloc"
path = "tests/no_alloc.rs"
harness = false
[[test]]
name = "plan"
path = "tests/plan.rs"
[dependencies.kime-model]
version = "=0.0.9"
[dependencies.kime-tensor]
version = "=0.0.9"
[dependencies.libm]
version = "0.2.16"
[dev-dependencies.serde_json]
version = "1.0.151"
features = [
"preserve_order",
"float_roundtrip",
]
[lints.clippy]
doc_markdown = "allow"
float_cmp = "warn"
missing_panics_doc = "warn"
todo = "warn"
undocumented_unsafe_blocks = "warn"
[lints.rust]
missing_debug_implementations = "warn"
rust_2018_idioms = "warn"
unreachable_pub = "warn"
unused_qualifications = "warn"