[package]
edition = "2021"
rust-version = "1.83.0"
name = "tensor_optim"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A tiny tensor engine lacking compromise on portability"
documentation = "https://docs.rs/tensor_optim"
readme = "README.md"
keywords = [
"tensor",
"machine-learning",
"scienctific-compute",
"memory-efficient",
]
categories = [
"science",
"mathematics",
"data-structures",
"embedded",
"no-std::no-alloc",
]
license = "MIT"
repository = "https://github.com/bobbothe2nd/tensor_optim"
[features]
alloc = []
default = ["no_stack"]
no_stack = ["alloc"]
[lib]
name = "tensor_optim"
path = "src/lib.rs"
[[test]]
name = "map_zip_or_not"
path = "tests/map_zip_or_not.rs"
required-features = ["alloc"]
[[test]]
name = "matmul"
path = "tests/matmul.rs"
[[test]]
name = "transpose"
path = "tests/transpose.rs"
required-features = ["alloc"]
[dependencies.lazy_simd]
version = "0.3.0"
[dev-dependencies.proptest]
version = "1.7.0"
[profile.release]
opt-level = 3
codegen-units = 1
debug = 0
incremental = true
[profile.release.package."*"]
opt-level = 3
codegen-units = 1