[][src]Struct halide_runtime::runtime::halide_device_interface_t

#[repr(C)]pub struct halide_device_interface_t {
    pub device_malloc: Option<unsafe extern "C" fn(user_context: *mut c_void, buf: *mut halide_buffer_t, device_interface: *const halide_device_interface_t) -> c_int>,
    pub device_free: Option<unsafe extern "C" fn(user_context: *mut c_void, buf: *mut halide_buffer_t) -> c_int>,
    pub device_sync: Option<unsafe extern "C" fn(user_context: *mut c_void, buf: *mut halide_buffer_t) -> c_int>,
    pub device_release: Option<unsafe extern "C" fn(user_context: *mut c_void, device_interface: *const halide_device_interface_t)>,
    pub copy_to_host: Option<unsafe extern "C" fn(user_context: *mut c_void, buf: *mut halide_buffer_t) -> c_int>,
    pub copy_to_device: Option<unsafe extern "C" fn(user_context: *mut c_void, buf: *mut halide_buffer_t, device_interface: *const halide_device_interface_t) -> c_int>,
    pub device_and_host_malloc: Option<unsafe extern "C" fn(user_context: *mut c_void, buf: *mut halide_buffer_t, device_interface: *const halide_device_interface_t) -> c_int>,
    pub device_and_host_free: Option<unsafe extern "C" fn(user_context: *mut c_void, buf: *mut halide_buffer_t) -> c_int>,
    pub buffer_copy: Option<unsafe extern "C" fn(user_context: *mut c_void, src: *mut halide_buffer_t, dst_device_interface: *const halide_device_interface_t, dst: *mut halide_buffer_t) -> c_int>,
    pub device_crop: Option<unsafe extern "C" fn(user_context: *mut c_void, src: *const halide_buffer_t, dst: *mut halide_buffer_t) -> c_int>,
    pub device_slice: Option<unsafe extern "C" fn(user_context: *mut c_void, src: *const halide_buffer_t, slice_dim: c_int, slice_pos: c_int, dst: *mut halide_buffer_t) -> c_int>,
    pub device_release_crop: Option<unsafe extern "C" fn(user_context: *mut c_void, buf: *mut halide_buffer_t) -> c_int>,
    pub wrap_native: Option<unsafe extern "C" fn(user_context: *mut c_void, buf: *mut halide_buffer_t, handle: u64, device_interface: *const halide_device_interface_t) -> c_int>,
    pub detach_native: Option<unsafe extern "C" fn(user_context: *mut c_void, buf: *mut halide_buffer_t) -> c_int>,
    pub compute_capability: Option<unsafe extern "C" fn(user_context: *mut c_void, major: *mut c_int, minor: *mut c_int) -> c_int>,
    pub impl_: *const halide_device_interface_impl_t,
}

Fields

device_malloc: Option<unsafe extern "C" fn(user_context: *mut c_void, buf: *mut halide_buffer_t, device_interface: *const halide_device_interface_t) -> c_int>device_free: Option<unsafe extern "C" fn(user_context: *mut c_void, buf: *mut halide_buffer_t) -> c_int>device_sync: Option<unsafe extern "C" fn(user_context: *mut c_void, buf: *mut halide_buffer_t) -> c_int>device_release: Option<unsafe extern "C" fn(user_context: *mut c_void, device_interface: *const halide_device_interface_t)>copy_to_host: Option<unsafe extern "C" fn(user_context: *mut c_void, buf: *mut halide_buffer_t) -> c_int>copy_to_device: Option<unsafe extern "C" fn(user_context: *mut c_void, buf: *mut halide_buffer_t, device_interface: *const halide_device_interface_t) -> c_int>device_and_host_malloc: Option<unsafe extern "C" fn(user_context: *mut c_void, buf: *mut halide_buffer_t, device_interface: *const halide_device_interface_t) -> c_int>device_and_host_free: Option<unsafe extern "C" fn(user_context: *mut c_void, buf: *mut halide_buffer_t) -> c_int>buffer_copy: Option<unsafe extern "C" fn(user_context: *mut c_void, src: *mut halide_buffer_t, dst_device_interface: *const halide_device_interface_t, dst: *mut halide_buffer_t) -> c_int>device_crop: Option<unsafe extern "C" fn(user_context: *mut c_void, src: *const halide_buffer_t, dst: *mut halide_buffer_t) -> c_int>device_slice: Option<unsafe extern "C" fn(user_context: *mut c_void, src: *const halide_buffer_t, slice_dim: c_int, slice_pos: c_int, dst: *mut halide_buffer_t) -> c_int>device_release_crop: Option<unsafe extern "C" fn(user_context: *mut c_void, buf: *mut halide_buffer_t) -> c_int>wrap_native: Option<unsafe extern "C" fn(user_context: *mut c_void, buf: *mut halide_buffer_t, handle: u64, device_interface: *const halide_device_interface_t) -> c_int>detach_native: Option<unsafe extern "C" fn(user_context: *mut c_void, buf: *mut halide_buffer_t) -> c_int>compute_capability: Option<unsafe extern "C" fn(user_context: *mut c_void, major: *mut c_int, minor: *mut c_int) -> c_int>impl_: *const halide_device_interface_impl_t

Trait Implementations

impl Clone for halide_device_interface_t[src]

impl Copy for halide_device_interface_t[src]

impl Debug for halide_device_interface_t[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.