[[bench]]
harness = false
name = "dense"
path = "benches/dense.rs"
[[bench]]
harness = false
name = "fast_math"
path = "benches/fast_math.rs"
[[bench]]
harness = false
name = "maxsim"
path = "benches/maxsim.rs"
required-features = ["maxsim"]
[[bench]]
harness = false
name = "sparse"
path = "benches/sparse.rs"
required-features = ["sparse"]
[[bench]]
harness = false
name = "ternary"
path = "benches/ternary.rs"
[dependencies]
[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"
[dev-dependencies.proptest]
version = "1.5"
[dev-dependencies.rand]
version = "0.9"
[[example]]
name = "01_basic_ops"
path = "examples/01_basic_ops.rs"
[[example]]
name = "fast_math_demo"
path = "examples/fast_math_demo.rs"
[[example]]
name = "simd_benchmark"
path = "examples/simd_benchmark.rs"
[[example]]
name = "ternary_demo"
path = "examples/ternary_demo.rs"
[features]
default = []
full = ["maxsim", "sparse"]
maxsim = []
sparse = []
[lib]
name = "innr"
path = "src/lib.rs"
[package]
authors = ["Arc <attobop@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms", "science"]
description = "SIMD-accelerated vector similarity primitives (dot, cosine, norm, maxsim, matryoshka, clifford rotors)"
documentation = "https://docs.rs/innr"
edition = "2021"
homepage = "https://github.com/arclabs561/innr"
keywords = ["simd", "vector", "similarity", "dot-product", "cosine"]
license = "MIT OR Apache-2.0"
name = "innr"
readme = "README.md"
repository = "https://github.com/arclabs561/innr"
version = "0.1.0"
[[test]]
name = "batch_tests"
path = "tests/batch_tests.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "maxsim_props"
path = "tests/maxsim_props.rs"
[[test]]
name = "maxsim_tests"
path = "tests/maxsim_tests.rs"
[[test]]
name = "numerical_edge_cases"
path = "tests/numerical_edge_cases.rs"
[[test]]
name = "property_tests"
path = "tests/property_tests.rs"
[[test]]
name = "simd_correctness"
path = "tests/simd_correctness.rs"
[[test]]
name = "sparse_maxsim_props"
path = "tests/sparse_maxsim_props.rs"