#[repr(C)]pub struct DML_CONVOLUTION_OPERATOR_DESC {Show 14 fields
pub InputTensor: *const DML_TENSOR_DESC,
pub FilterTensor: *const DML_TENSOR_DESC,
pub BiasTensor: *const DML_TENSOR_DESC,
pub OutputTensor: *const DML_TENSOR_DESC,
pub Mode: DML_CONVOLUTION_MODE,
pub Direction: DML_CONVOLUTION_DIRECTION,
pub DimensionCount: u32,
pub Strides: *const u32,
pub Dilations: *const u32,
pub StartPadding: *const u32,
pub EndPadding: *const u32,
pub OutputPadding: *const u32,
pub GroupCount: u32,
pub FusedActivation: *const DML_OPERATOR_DESC,
}Expand description
Required features: "Win32_AI_MachineLearning_DirectML"
Fields
InputTensor: *const DML_TENSOR_DESCFilterTensor: *const DML_TENSOR_DESCBiasTensor: *const DML_TENSOR_DESCOutputTensor: *const DML_TENSOR_DESCMode: DML_CONVOLUTION_MODEDirection: DML_CONVOLUTION_DIRECTIONDimensionCount: u32Strides: *const u32Dilations: *const u32StartPadding: *const u32EndPadding: *const u32OutputPadding: *const u32GroupCount: u32FusedActivation: *const DML_OPERATOR_DESCTrait Implementations
impl Clone for DML_CONVOLUTION_OPERATOR_DESC
impl Clone for DML_CONVOLUTION_OPERATOR_DESC
impl Copy for DML_CONVOLUTION_OPERATOR_DESC
Auto Trait Implementations
impl RefUnwindSafe for DML_CONVOLUTION_OPERATOR_DESC
impl !Send for DML_CONVOLUTION_OPERATOR_DESC
impl !Sync for DML_CONVOLUTION_OPERATOR_DESC
impl Unpin for DML_CONVOLUTION_OPERATOR_DESC
impl UnwindSafe for DML_CONVOLUTION_OPERATOR_DESC
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more