[package]
edition = "2024"
rust-version = "1.88"
name = "oxmera-tensor"
version = "0.5.2"
authors = ["Vyncint Ng <vyncint@icloud.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The oxmera tensor: strided zero-copy views, broadcasting, multi-device storage (CPU, Apple Metal, NVIDIA CUDA), einsum, batched linear algebra, the backend registry, and tape-based reverse-mode autograd."
readme = "README.md"
keywords = [
"tensor",
"deep-learning",
"machine-learning",
"autograd",
"gpu",
]
categories = [
"science",
"mathematics",
"algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/vyncint/oxmera"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "oxmera_tensor"
path = "src/lib.rs"
[[test]]
name = "constructor_shapes"
path = "tests/constructor_shapes.rs"
[[test]]
name = "einsum"
path = "tests/einsum.rs"
[[test]]
name = "empty"
path = "tests/empty.rs"
[[test]]
name = "f64"
path = "tests/f64.rs"
[[test]]
name = "hardening"
path = "tests/hardening.rs"
[[test]]
name = "linalg"
path = "tests/linalg.rs"
[[test]]
name = "matmul_broadcast"
path = "tests/matmul_broadcast.rs"
[[test]]
name = "matmul_rank4"
path = "tests/matmul_rank4.rs"
[[test]]
name = "shape_overflow"
path = "tests/shape_overflow.rs"
[[test]]
name = "tracked"
path = "tests/tracked.rs"
[[test]]
name = "views"
path = "tests/views.rs"
[dependencies.oxmera-core]
version = "0.5.2"
[dependencies.rand]
version = "0.9"
[dependencies.rand_distr]
version = "0.5"
[dependencies.rayon]
version = "1"
[dev-dependencies.proptest]
version = "1"
[target.'cfg(target_os = "macos")'.dependencies.metal]
version = "0.33.0"