#[repr(C)]pub struct OrtOpenVINOProviderOptions {
pub device_type: *const c_char,
pub enable_vpu_fast_compile: c_uchar,
pub device_id: *const c_char,
pub num_of_threads: usize,
pub use_compiled_network: c_uchar,
pub blob_dump_path: *const c_char,
}
Expand description
Options for the OpenVINO provider that are passed to SessionOptionsAppendExecutionProvider_OpenVINO
Fields§
§device_type: *const c_char
§enable_vpu_fast_compile: c_uchar
§device_id: *const c_char
§num_of_threads: usize
§use_compiled_network: c_uchar
§blob_dump_path: *const c_char
Trait Implementations§
Source§impl Clone for OrtOpenVINOProviderOptions
impl Clone for OrtOpenVINOProviderOptions
Source§fn clone(&self) -> OrtOpenVINOProviderOptions
fn clone(&self) -> OrtOpenVINOProviderOptions
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for OrtOpenVINOProviderOptions
impl Debug for OrtOpenVINOProviderOptions
impl Copy for OrtOpenVINOProviderOptions
Auto Trait Implementations§
impl Freeze for OrtOpenVINOProviderOptions
impl RefUnwindSafe for OrtOpenVINOProviderOptions
impl !Send for OrtOpenVINOProviderOptions
impl !Sync for OrtOpenVINOProviderOptions
impl Unpin for OrtOpenVINOProviderOptions
impl UnwindSafe for OrtOpenVINOProviderOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more