ringkernel 0.1.2

GPU-native persistent actor model framework - Rust port of DotCompute Ring Kernel
Documentation
[[bench]]
harness = false
name = "claims_validation"
path = "benches/claims_validation.rs"

[[bench]]
harness = false
name = "hlc"
path = "benches/hlc.rs"

[[bench]]
harness = false
name = "k2k_messaging"
path = "benches/k2k_messaging.rs"

[[bench]]
harness = false
name = "latency"
path = "benches/latency.rs"

[[bench]]
harness = false
name = "memory_layout"
path = "benches/memory_layout.rs"

[[bench]]
harness = false
name = "message_queue"
path = "benches/message_queue.rs"

[[bench]]
harness = false
name = "serialization"
path = "benches/serialization.rs"

[[bench]]
harness = false
name = "startup"
path = "benches/startup.rs"

[dependencies.async-trait]
version = "0.1"

[dependencies.cfg-if]
version = "1.0"

[dependencies.futures]
version = "0.3"

[dependencies.inventory]
version = "0.3"

[dependencies.ringkernel-codegen]
version = "0.1.2"

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

[dependencies.ringkernel-cpu]
version = "0.1.2"

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

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

[dependencies.ringkernel-metal]
optional = true
version = "0.1.2"

[dependencies.ringkernel-wgpu]
optional = true
version = "0.1.2"

[dependencies.thiserror]
version = "1.0"

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

[dependencies.tracing]
version = "0.1"

[dev-dependencies.async-stream]
version = "0.3"

[dev-dependencies.axum]
version = "0.7"

[dev-dependencies.bytemuck]
features = ["derive"]
version = "1.14"

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

[dev-dependencies.crossterm]
version = "0.28"

[dev-dependencies.futures]
version = "0.3"

[dev-dependencies.proptest]
version = "1.4"

[dev-dependencies.prost]
version = "0.13"

[dev-dependencies.reqwest]
default-features = false
features = ["json"]
version = "0.12"

[dev-dependencies.ringkernel-cuda]
version = "0.1.2"

[dev-dependencies.ringkernel-cuda-codegen]
version = "0.1.2"

[dev-dependencies.rkyv]
features = ["validation", "strict"]
version = "0.7"

[dev-dependencies.serde]
features = ["derive"]
version = "1.0"

[dev-dependencies.serde_json]
version = "1.0"

[dev-dependencies.syn]
features = ["full", "extra-traits", "full", "parsing"]
version = "2.0"

[dev-dependencies.tokio]
features = ["full", "test-util", "macros", "rt-multi-thread"]
version = "1.35"

[dev-dependencies.toml]
version = "0.8"

[dev-dependencies.tonic]
version = "0.12"

[dev-dependencies.tower]
version = "0.5"

[dev-dependencies.tower-http]
features = ["cors", "trace"]
version = "0.6"

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

[dev-dependencies.zerocopy]
features = ["derive"]
version = "0.7"

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

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

[features]
all-backends = ["cpu", "cuda", "wgpu", "metal"]
cpu = []
cuda = ["ringkernel-cuda/cuda"]
default = ["cpu"]
k2k-messaging = []
metal = ["ringkernel-metal/metal"]
multi-gpu = ["cuda"]
telemetry = []
topic-pubsub = []
wgpu = ["ringkernel-wgpu/wgpu"]

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

[package]
authors = ["Michael Ivertowski <mivertowski@outlook.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["concurrency", "asynchronous", "hardware-support"]
description = "GPU-native persistent actor model framework - Rust port of DotCompute Ring Kernel"
documentation = "https://docs.rs/ringkernel"
edition = "2021"
homepage = "https://github.com/mivertowski/RustCompute"
keywords = ["gpu", "actor", "cuda", "wgpu", "distributed"]
license = "Apache-2.0"
name = "ringkernel"
readme = "README.md"
repository = "https://github.com/mivertowski/RustCompute"
rust-version = "1.75"
version = "0.1.2"

[[test]]
name = "control_block"
path = "tests/control_block.rs"

[[test]]
name = "cpu_backend"
path = "tests/cpu_backend.rs"

[[test]]
name = "cuda_backend"
path = "tests/cuda_backend.rs"

[[test]]
name = "hlc"
path = "tests/hlc.rs"

[[test]]
name = "k2k_integration"
path = "tests/k2k_integration.rs"