Crates.io | hip-rs |
lib.rs | hip-rs |
version | |
source | src |
created_at | 2024-10-30 13:12:53.314805 |
updated_at | 2024-12-09 18:54:14.656703 |
description | A Rust wrapper for AMD's Heterogeneous-computing Interface for Portability (HIP), used for GPU interop. |
homepage | |
repository | https://github.com/smedegaard/hip-rs |
max_upload_size | |
id | 1428497 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
[!CAUTION] hip-rs is not to be used for anything else that hobby projects.
A rust wrapper for HIP.
The Heterogeneous-computing Interface for Portability (HIP) API is a C++ runtime API and kernel language that lets developers create portable applications running in heterogeneous systems, using CPUs and AMD GPUs or NVIDIA GPUs from a single source code. HIP provides a simple marshalling language to access either the AMD ROCM back-end, or NVIDIA CUDA back-end, to build and run application kernels. — the HIP documentation