[package]
edition = "2021"
rust-version = "1.75"
name = "ringkernel-cuda-codegen"
version = "0.4.0"
authors = ["Michael Ivertowski <mivertowski@outlook.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CUDA code generation from Rust DSL for RingKernel stencil kernels"
homepage = "https://github.com/mivertowski/RustCompute"
readme = "README.md"
keywords = [
"gpu",
"cuda",
"codegen",
"stencil",
"transpiler",
]
categories = [
"development-tools",
"compilers",
]
license = "Apache-2.0"
repository = "https://github.com/mivertowski/RustCompute"
[features]
default = []
nvcc = []
[lib]
name = "ringkernel_cuda_codegen"
path = "src/lib.rs"
[[test]]
name = "actor_codegen_integration"
path = "tests/actor_codegen_integration.rs"
[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.syn]
version = "2.0"
features = [
"full",
"extra-traits",
"full",
"visit",
"extra-traits",
]
[dependencies.thiserror]
version = "2.0"