collenchyma 0.0.8

high-performance computation on any hardware
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Provides a safe wrapper around OpenCL.

pub use self::error::Error;

#[derive(Debug, Copy, Clone)]
/// Defines the OpenCL API.
pub struct API;

mod error;
mod context;
mod device;
mod memory;
mod platform;
mod queue;
mod ffi;
pub mod types;