[package] authors = ["nathanielsimard "] categories = ["science", "no-std", "embedded", "wasm"] description = "Tensor library with user-friendly APIs and automatic differentiation support" edition.workspace = true keywords = ["deep-learning", "machine-learning", "tensor", "pytorch", "ndarray"] license.workspace = true name = "burn-tensor" readme.workspace = true repository = "https://github.com/tracel-ai/burn/tree/main/burn-tensor" version.workspace = true [features] default = ["std"] experimental-named-tensor = [] export_tests = ["burn-tensor-testgen"] std = ["rand/std", "half/std"] wasm-sync = [] [dependencies] burn-common = { path = "../burn-common", version = "0.12.0", default-features = false } burn-tensor-testgen = { path = "../burn-tensor-testgen", version = "0.12.0", optional = true } derive-new = { workspace = true } half = { workspace = true } libm = { workspace = true } # no_std is supported by default num-traits = { workspace = true } rand = { workspace = true } rand_distr = { workspace = true } # use instead of statrs because it supports no_std # The same implementation of HashMap in std but with no_std support (only needs alloc crate) hashbrown = { workspace = true } # no_std compatible # Serialization serde = { workspace = true } [dev-dependencies] rand = { workspace = true, features = ["std", "std_rng"] } # Default enables std