[package]
name = "kaio-runtime"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
description = "KAIO runtime — CUDA driver API wrapper, kernel launch, and device memory management. Part of the KAIO GPU kernel authoring framework."
keywords = ["gpu", "cuda", "ptx", "runtime", "kernel"]
categories = ["hardware-support"]
[package.metadata.docs.rs]
targets = [
"x86_64-unknown-linux-gnu",
"x86_64-pc-windows-msvc",
]
[features]
default = ["dynamic-loading"]
dynamic-loading = ["cudarc/dynamic-loading"]
dynamic-linking = ["cudarc/dynamic-linking"]
[dependencies]
cudarc = { workspace = true }
thiserror = { workspace = true }
kaio-core = { version = "0.4.1", path = "../kaio-core" }
[dev-dependencies]
static_assertions = "1"
half = { workspace = true }