instmodel_inference 0.9.0

High-performance neural network inference library with instruction-based execution
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 = "2024"
name = "instmodel_inference"
version = "0.9.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance neural network inference library with instruction-based execution"
readme = "README.md"
keywords = [
    "neural-network",
    "inference",
    "machine-learning",
    "deep-learning",
]
categories = [
    "science",
    "simulation",
]
license = "MIT"
repository = "https://github.com/Joaoprcf/instmodel-rust-inference"

[features]
default = []
gpu-benchmark = [
    "wgpu",
    "pollster",
]

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

[[bin]]
name = "benchmark"
path = "benchmarks/bin/benchmark.rs"

[[bin]]
name = "gpu_benchmark"
path = "benchmarks/gpu/gpu_benchmark.rs"
required-features = ["gpu-benchmark"]

[[bin]]
name = "parallel_benchmark"
path = "src/bin/parallel_benchmark.rs"

[[bin]]
name = "performance"
path = "src/bin/performance.rs"

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

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

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

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

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

[dependencies.bytemuck]
version = "1.14"
features = ["derive"]

[dependencies.env_logger]
version = "0.10"

[dependencies.log]
version = "0.4"

[dependencies.pollster]
version = "0.4"
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "1.0"

[dependencies.wgpu]
version = "24.0"
optional = true

[dev-dependencies.pollster]
version = "0.4"

[dev-dependencies.pretty_assertions]
version = "1.4"

[dev-dependencies.wgpu]
version = "24.0"