[package]
edition = "2021"
rust-version = "1.78"
name = "atomr-accel"
version = "0.10.0"
authors = ["atomr-accel contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Backend-agnostic compute-acceleration core. Defines the AccelBackend trait, AccelRef<T> typed pointers, AccelError enum, and CompletionStrategy — the abstraction layer that lets atomr-accel-cuda (NVIDIA), and future ROCm / Metal / oneAPI / Vulkan backends plug into the same actor surface."
homepage = "https://github.com/rustakka/atomr-accel"
documentation = "https://docs.rs/atomr-accel"
readme = "README.md"
keywords = [
"cuda",
"gpu",
"atomr",
"actor",
"ml",
]
categories = [
"concurrency",
"asynchronous",
"science",
"hardware-support",
]
license = "Apache-2.0"
repository = "https://github.com/rustakka/atomr-accel"
[features]
default = []
f16 = ["dep:half"]
f4 = []
f8 = []
[lib]
name = "atomr_accel"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.atomr-config]
version = "0.9.1"
[dependencies.atomr-core]
version = "0.9.1"
[dependencies.half]
version = "2"
optional = true
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1.39"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
]