[package]
edition = "2021"
rust-version = "1.65"
name = "tidu"
version = "0.2.0"
authors = ["Hiroshi Shinaoka <h.shinaoka@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Automatic-differentiation transforms (linearize, transpose, eager reverse-mode) for primitive computation graphs."
readme = "README.md"
keywords = [
"autodiff",
"gradient",
"jvp",
"vjp",
"computation-graph",
]
categories = [
"mathematics",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/tensor4all/tidu-rs"
[lib]
name = "tidu"
path = "src/lib.rs"
[[example]]
name = "eager_reverse_mode"
path = "examples/eager_reverse_mode.rs"
[[example]]
name = "primitive_linearization"
path = "examples/primitive_linearization.rs"
[[test]]
name = "adcontext_tests"
path = "tests/adcontext_tests.rs"
[[test]]
name = "complex_ad_tests"
path = "tests/complex_ad_tests.rs"
[[test]]
name = "eager_backward_tests"
path = "tests/eager_backward_tests.rs"
[[test]]
name = "eager_record_tests"
path = "tests/eager_record_tests.rs"
[[test]]
name = "edge_case_tests"
path = "tests/edge_case_tests.rs"
[[test]]
name = "fallible_ad_tests"
path = "tests/fallible_ad_tests.rs"
[[test]]
name = "robustness_tests"
path = "tests/robustness_tests.rs"
[[test]]
name = "rules_public_api_tests"
path = "tests/rules_public_api_tests.rs"
[[test]]
name = "scalar_ad_tests"
path = "tests/scalar_ad_tests.rs"
[[test]]
name = "vector_ad_tests"
path = "tests/vector_ad_tests.rs"
[dependencies.computegraph]
version = "0.1.0"
[dev-dependencies.ndarray]
version = "0.16"
[dev-dependencies.num-complex]
version = "0.4"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(coverage)"]