[package]
edition = "2021"
name = "candle-graph"
version = "0.10.1"
authors = ["Stepan Zagray"]
build = false
include = [
"/Cargo.toml",
"/Cargo.lock",
"/README.md",
"/LICENSE-MIT",
"/CONTEXT.md",
"/docs/README.md",
"/docs/cli-reference.md",
"/docs/features.md",
"/docs/runtime-analysis-guide.md",
"/docs/schemas.md",
"/docs/visualizer.md",
"/src/**",
"/tests/**",
"/benches/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "TensorFlow Profiler-style execution graphs for candle-rs (trace-only)"
documentation = "https://docs.rs/candle-graph"
readme = "README.md"
keywords = [
"candle",
"machine-learning",
"profiler",
"deep-learning",
]
categories = [
"development-tools",
"science",
]
license = "MIT"
repository = "https://github.com/StepanZagray/candle_graph"
[package.metadata.docs.rs]
all-features = true
[features]
all = [
"visualizer",
"candle",
]
candle = ["dep:candle-core"]
default = ["visualizer"]
visualizer = []
[lib]
name = "candle_graph"
path = "src/lib.rs"
[[bin]]
name = "candle-graph"
path = "src/main.rs"
[[bin]]
name = "cargo-candle-graph"
path = "src/cargo_candle_graph.rs"
[[test]]
name = "cli_bundle_input"
path = "tests/cli_bundle_input.rs"
[[test]]
name = "comparison_bundles"
path = "tests/comparison_bundles.rs"
[[test]]
name = "gradient_contract"
path = "tests/gradient_contract.rs"
[[test]]
name = "trace_viewer"
path = "tests/trace_viewer.rs"
required-features = ["visualizer"]
[[bench]]
name = "instrumentation_overhead"
path = "benches/instrumentation_overhead.rs"
harness = false
[dependencies.anyhow]
version = "1"
[dependencies.candle-core]
version = "0.11"
optional = true
default-features = false
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.csv]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"