[package]
edition = "2021"
rust-version = "1.75"
name = "ringkernel-cuda"
version = "0.4.0"
authors = ["Michael Ivertowski <mivertowski@outlook.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CUDA backend for RingKernel - NVIDIA GPU support via cudarc"
homepage = "https://github.com/mivertowski/RustCompute"
readme = "README.md"
keywords = [
"gpu",
"actor",
"cuda",
"nvidia",
]
categories = ["hardware-support"]
license = "Apache-2.0"
repository = "https://github.com/mivertowski/RustCompute"
[features]
cooperative = ["cuda"]
cuda = ["cudarc"]
default = []
profiling = [
"cuda",
"serde",
"serde_json",
]
ptx-cache = [
"cuda",
"sha2",
"tempfile",
]
[lib]
name = "ringkernel_cuda"
path = "src/lib.rs"
[[test]]
name = "cooperative_benchmark"
path = "tests/cooperative_benchmark.rs"
[[test]]
name = "gpu_actor_integration"
path = "tests/gpu_actor_integration.rs"
[[test]]
name = "gpu_execution_verify"
path = "tests/gpu_execution_verify.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.cudarc]
version = "0.18.2"
features = [
"cuda-version-from-build-system",
"nvtx",
]
optional = true
[dependencies.futures]
version = "0.3"
[dependencies.parking_lot]
version = "0.12"
[dependencies.ringkernel-core]
version = "0.4.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
[dependencies.serde_json]
version = "1.0"
optional = true
[dependencies.sha2]
version = "0.10"
optional = true
[dependencies.tempfile]
version = "3.9"
optional = true
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.48"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tokio]
version = "1.48"
features = [
"full",
"test-util",
"macros",
"rt-multi-thread",
]