[package]
edition = "2021"
name = "ferrotherm-gpu"
version = "0.2.6"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Native GPU sampling for ferrotherm: the same WGSL sweep the browser runs, on Vulkan, Metal or DX12. Kept out of the core crate so `ferrotherm` stays std-only with zero dependencies."
readme = "README.md"
keywords = [
"thermodynamic",
"ising",
"gibbs-sampling",
"gpu",
"wgpu",
]
categories = [
"science",
"algorithms",
"simulation",
]
license = "Apache-2.0"
repository = "https://github.com/dcharlot-physicalai-bmi/ferrotherm"
[lib]
name = "ferrotherm_gpu"
path = "src/lib.rs"
[[example]]
name = "bench"
path = "examples/bench.rs"
[[example]]
name = "clamp_rate"
path = "examples/clamp_rate.rs"
[[example]]
name = "duty_cycle"
path = "examples/duty_cycle.rs"
[[example]]
name = "joules"
path = "examples/joules.rs"
[[example]]
name = "planner_joules"
path = "examples/planner_joules.rs"
[dependencies.ferrotherm]
version = "0.17"
[dependencies.pollster]
version = "0.4"
[dependencies.wgpu]
version = "30"
[dev-dependencies.ferrotherm-meter]
version = "0.3"
[lints.clippy]
needless_range_loop = "allow"
neg_cmp_op_on_partial_ord = "allow"
too_many_arguments = "allow"