Struct halide_device_interface_t

Source
#[repr(C)]
pub struct halide_device_interface_t {
Show 16 fields 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§

Source§

impl Clone for halide_device_interface_t

Source§

fn clone(&self) -> halide_device_interface_t

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for halide_device_interface_t

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for halide_device_interface_t

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.