embedded-nn 0.2.1

A pure Rust, #![no_std] neural network inference library inspired by CMSIS-NN for microcontrollers and embedded targets.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "embedded-nn"
version = "0.2.1"
authors = ["Gerzain Mata <leftger@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A pure Rust, #![no_std] neural network inference library inspired by CMSIS-NN for microcontrollers and embedded targets."
readme = "README.md"
keywords = [
    "no-std",
    "embedded",
    "cmsis-nn",
    "neural-network",
    "quantization",
]
categories = [
    "embedded",
    "science",
    "no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/leftger/embedded-nn"

[features]
alloc = []
default = []
embedded-dsp = [
    "dep:embedded-dsp",
    "embedded-dsp/libm",
]
float = []
simd = []

[lib]
name = "embedded_nn"
path = "src/lib.rs"

[[test]]
name = "test_activations"
path = "tests/test_activations.rs"

[[test]]
name = "test_basic_math"
path = "tests/test_basic_math.rs"

[[test]]
name = "test_convolution"
path = "tests/test_convolution.rs"

[[test]]
name = "test_float_ops"
path = "tests/test_float_ops.rs"

[[test]]
name = "test_fully_connected"
path = "tests/test_fully_connected.rs"

[[test]]
name = "test_math_utilities"
path = "tests/test_math_utilities.rs"

[[test]]
name = "test_pooling"
path = "tests/test_pooling.rs"

[[test]]
name = "test_recurrent"
path = "tests/test_recurrent.rs"

[[test]]
name = "test_softmax"
path = "tests/test_softmax.rs"

[[test]]
name = "test_subbyte"
path = "tests/test_subbyte.rs"

[[test]]
name = "test_tensor_ops"
path = "tests/test_tensor_ops.rs"

[dependencies.embedded-dsp]
version = "0.2.0"
optional = true
default-features = false

[dev-dependencies]