[package]
edition = "2024"
rust-version = "1.94"
name = "candle-einops"
version = "0.2.0"
authors = ["tomsanbear <thomas@santerre.xyz>"]
build = false
exclude = [
".github/",
".ticketsplease/",
"benchmarks/",
"parity/",
"tickets/",
"ticketsplease.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Compile-time einops and einsum tensor operations for Candle"
readme = "README.md"
keywords = [
"tensor",
"candle",
"einops",
"machine-learning",
"ai",
]
categories = [
"algorithms",
"science",
"mathematics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/tomsanbear/candle-einops"
[package.metadata.docs.rs]
no-default-features = true
[features]
benchmark-internals = []
default = []
[lib]
name = "candle_einops"
path = "src/lib.rs"
[[test]]
name = "behavior"
path = "tests/behavior.rs"
[[test]]
name = "decomposition_arithmetic"
path = "tests/decomposition_arithmetic.rs"
[[test]]
name = "einops"
path = "tests/einops.rs"
[[test]]
name = "einsum_binary"
path = "tests/einsum_binary.rs"
[[test]]
name = "einsum_diagonal"
path = "tests/einsum_diagonal.rs"
[[test]]
name = "einsum_ellipsis"
path = "tests/einsum_ellipsis.rs"
[[test]]
name = "einsum_nary"
path = "tests/einsum_nary.rs"
[[test]]
name = "einsum_oracle"
path = "tests/einsum_oracle.rs"
[[test]]
name = "einsum_semantic_matrix"
path = "tests/einsum_semantic_matrix.rs"
[[test]]
name = "einsum_unary"
path = "tests/einsum_unary.rs"
[[test]]
name = "einsum_zero_k_autograd"
path = "tests/einsum_zero_k_autograd.rs"
[[test]]
name = "errors"
path = "tests/errors.rs"
[[test]]
name = "fused_permute_compose"
path = "tests/fused_permute_compose.rs"
[[test]]
name = "gradients"
path = "tests/gradients.rs"
[[test]]
name = "identity_reshape"
path = "tests/identity_reshape.rs"
[[test]]
name = "properties"
path = "tests/properties.rs"
[[test]]
name = "reduction_fusion"
path = "tests/reduction_fusion.rs"
[[test]]
name = "repeat_broadcast_view"
path = "tests/repeat_broadcast_view.rs"
[[test]]
name = "runtime_rank_shape"
path = "tests/runtime_rank_shape.rs"
[[test]]
name = "semantic_expansion"
path = "tests/semantic_expansion.rs"
[dependencies.candle-core]
version = "0.11"
[dependencies.candle-einops-macros]
version = "=0.2.0"