[package]
edition = "2024"
name = "tensor-forge"
version = "0.1.0"
authors = ["Noah Sedlik"]
build = false
exclude = [".*"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A minimal deterministic compute graph runtime for tensor operations in Rust."
homepage = "https://github.com/noah-CAL/tensor-forge"
documentation = "https://docs.rs/tensor_forge"
readme = "README.md"
keywords = [
"tensor",
"compute-graph",
"runtime",
"ml",
"graph",
]
categories = [
"algorithms",
"data-structures",
"science",
]
license = "MIT"
repository = "https://github.com/noah-CAL/tensor-forge"
[badges.maintenance]
status = "passively-maintained"
[lib]
name = "tensor_forge"
path = "src/lib.rs"
[[example]]
name = "addition_graph"
path = "examples/addition_graph.rs"
[[example]]
name = "branching_graph"
path = "examples/branching_graph.rs"
[[example]]
name = "custom_kernel"
path = "examples/custom_kernel.rs"
[[example]]
name = "feedforward_neural_net"
path = "examples/feedforward_neural_net.rs"
[[test]]
name = "graph_tests"
path = "tests/graph_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "kernel_registry_tests"
path = "tests/kernel_registry_tests.rs"
[[test]]
name = "kernel_tests"
path = "tests/kernel_tests.rs"
[[test]]
name = "tensor_tests"
path = "tests/tensor_tests.rs"
[[test]]
name = "topo_sort_tests"
path = "tests/topo_sort_tests.rs"
[dependencies]