[package]
edition = "2024"
name = "rocm-sys"
version = "0.2.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ROCm system bindings configured by release version"
documentation = "https://docs.rs/crate/rocm-sys/latest"
readme = "README.md"
keywords = [
"gpu",
"hip",
"rocm",
"bindings",
"system",
]
categories = [
"hardware-support",
"external-ffi-bindings",
]
license = "MIT"
repository = "https://github.com/bobbothe2nd/rocm"
[features]
default = [
"dynamic-loading",
"hiprtc",
]
deprecated = []
dynamic-loading = ["dep:libloading"]
hip = []
hipblas = []
hipblaslt = []
hipcub = []
hipdnn = []
hipfft = []
hiprand = []
hiprtc = []
hipsolver = []
hipsparse = []
hipsparselt = []
hiptensor = []
hipthreads = []
private = []
rocalution = []
rocblas = []
rocfft = []
rocprim = []
rocrand = []
rocsolver = []
rocsparse = []
rocthrust = []
rocwmma = []
[lib]
name = "rocm_sys"
path = "src/lib.rs"
[[example]]
name = "get_device_count"
path = "examples/get_device_count.rs"
required-features = ["hip"]
[dependencies.libloading]
version = "0.9"
optional = true
[build-dependencies.rocm-build]
version = "0.1.2"