ringkernel-wavesim 0.1.0

Interactive 2D wave propagation showcase for RingKernel
Documentation
[[bin]]
name = "bench_packed"
path = "src/bin/bench_packed.rs"

[[bin]]
name = "benchmark"
path = "src/bin/benchmark.rs"

[[bin]]
name = "full_benchmark"
path = "src/bin/full_benchmark.rs"

[[bin]]
name = "test_cuda"
path = "src/bin/test_cuda.rs"

[[bin]]
name = "verify_packed"
path = "src/bin/verify_packed.rs"

[[bin]]
name = "wavesim"
path = "src/bin/wavesim.rs"

[dependencies.bytemuck]
features = ["derive"]
optional = true
version = "1.24"

[dependencies.cudarc]
features = ["cuda-version-from-build-system"]
optional = true
version = "0.11"

[dependencies.iced]
features = ["canvas", "tokio"]
version = "0.13"

[dependencies.inventory]
version = "0.3"

[dependencies.rand]
version = "0.8"

[dependencies.rayon]
version = "1.10"

[dependencies.ringkernel]
version = "0.1.0"

[dependencies.ringkernel-core]
version = "0.1.0"

[dependencies.ringkernel-cuda]
optional = true
version = "0.1.0"

[dependencies.ringkernel-cuda-codegen]
optional = true
version = "0.1.0"

[dependencies.ringkernel-derive]
version = "0.1.0"

[dependencies.syn]
features = ["full", "extra-traits"]
optional = true
version = "2.0"

[dependencies.tokio]
features = ["full"]
version = "1.35"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
features = ["env-filter"]
version = "0.3"

[dependencies.wgpu]
optional = true
version = "0.19"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"

[[example]]
name = "educational_modes"
path = "examples/educational_modes.rs"

[features]
all-backends = ["cpu", "cuda", "wgpu"]
cpu = ["ringkernel/cpu"]
cuda = ["ringkernel/cuda", "dep:ringkernel-cuda", "dep:cudarc", "dep:bytemuck"]
cuda-codegen = ["cuda", "dep:ringkernel-cuda-codegen", "dep:syn", "ringkernel-derive/cuda-codegen"]
default = ["cpu", "cuda", "simd"]
simd = []
wgpu = ["ringkernel/wgpu", "dep:wgpu", "dep:bytemuck"]

[lib]
name = "ringkernel_wavesim"
path = "src/lib.rs"

[package]
authors = ["Michael Ivertowski <mivertowski@outlook.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["simulation", "graphics", "visualization"]
description = "Interactive 2D wave propagation showcase for RingKernel"
edition = "2021"
homepage = "https://github.com/mivertowski/RustCompute"
keywords = ["gpu", "simulation", "wave", "physics", "ringkernel"]
license = "Apache-2.0"
name = "ringkernel-wavesim"
readme = "README.md"
repository = "https://github.com/mivertowski/RustCompute"
rust-version = "1.75"
version = "0.1.0"