ublk-vram 0.1.20

A block device that exposes OCL memory to userspace via ublk.
Documentation
1
2
3
4
5
6
7
8
9
10
//! OpenCL module for OCL memory allocation and management
//!
//! This module handles interaction with the OCL via OpenCL,
//! including device selection, memory allocation, and data transfer.

mod device;
mod memory;

pub use device::{CLDevice, list_opencl_devices};
pub use memory::{CLBuffer, CLBufferConfig};