coaster 0.2.0

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 context;
mod device;
mod error;
mod ffi;
mod memory;
mod platform;
mod queue;
pub mod types;