- Updated stablediffusion crate path from "../stable-diffusion-burn" to "./crates/stable-diffusion-burn" for proper workspace resolution - Enhanced .gitignore to include generated model files (.mpk, .pt, .bin, .safetensors, .ckpt) and user_data directory - Added Cargo.lock to gitignore with appropriate comment - Reorganized IDE files section in gitignore for better clarity - Added newline at end of file for proper formatting
47 lines
1.5 KiB
TOML
47 lines
1.5 KiB
TOML
[package]
|
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
|
categories = ["science", "no-std", "embedded", "wasm"]
|
|
description = "Core backend interfaces and data structures for executing tensor operations in Burn."
|
|
documentation = "https://docs.rs/burn-backend"
|
|
edition.workspace = true
|
|
keywords = ["deep-learning", "machine-learning", "tensor", "pytorch", "ndarray"]
|
|
license.workspace = true
|
|
name = "burn-backend"
|
|
readme.workspace = true
|
|
repository = "https://github.com/tracel-ai/burn/tree/main/crates/burn-backend"
|
|
version.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
default = ["std"]
|
|
doc = ["default"]
|
|
std = ["rand/std", "num-traits/std", "burn-std/std", "cubecl?/std"]
|
|
|
|
tracing = ["burn-std/tracing", "cubecl/tracing"]
|
|
|
|
cubecl = ["dep:cubecl", "burn-std/cubecl"]
|
|
cubecl-cuda = ["cubecl", "cubecl/cuda"]
|
|
cubecl-hip = ["cubecl", "cubecl/hip"]
|
|
cubecl-wgpu = ["cubecl", "cubecl/wgpu"]
|
|
cubecl-cpu = ["cubecl", "cubecl/cpu"]
|
|
|
|
[dependencies]
|
|
burn-std = { path = "../burn-std", version = "=0.21.0-pre.2", default-features = false }
|
|
cubecl = { workspace = true, optional = true, default-features = false }
|
|
|
|
bytemuck = { workspace = true, features = ["extern_crate_alloc"] }
|
|
derive-new = { workspace = true }
|
|
enumset = { workspace = true }
|
|
hashbrown = { workspace = true }
|
|
num-traits = { workspace = true }
|
|
rand = { workspace = true, default-features = false }
|
|
rand_distr = { workspace = true }
|
|
serde = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
rand = { workspace = true, features = ["thread_rng"] }
|
|
paste = { workspace = true }
|