[package]
edition = "2021"
name = "amx-sys"
version = "0.0.1"
authors = ["AMX Project"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Low-level AMX (Apple Matrix eXtensions) instruction emulation - hardware-faithful implementation"
readme = "README.md"
keywords = [
"amx",
"matrix",
"acceleration",
"arm",
"simd",
]
categories = [
"no-std",
"hardware-support",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/eugenehp/amx-rs"
[lib]
name = "amx_sys"
path = "src/lib.rs"
[[test]]
name = "comprehensive"
path = "tests/comprehensive.rs"
[[test]]
name = "parity"
path = "tests/parity.rs"
[[test]]
name = "parity_complete"
path = "tests/parity_complete.rs"
[[bench]]
name = "io_vs_compute"
path = "benches/io_vs_compute.rs"
harness = false
[dependencies.half]
version = "2"
[dev-dependencies]