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