Struct windows_sys::Win32::AI::MachineLearning::DirectML::DML_QUANTIZED_LINEAR_CONVOLUTION_OPERATOR_DESC
[−]#[repr(C)]pub struct DML_QUANTIZED_LINEAR_CONVOLUTION_OPERATOR_DESC {Show 16 fields
pub InputTensor: *const DML_TENSOR_DESC,
pub InputScaleTensor: *const DML_TENSOR_DESC,
pub InputZeroPointTensor: *const DML_TENSOR_DESC,
pub FilterTensor: *const DML_TENSOR_DESC,
pub FilterScaleTensor: *const DML_TENSOR_DESC,
pub FilterZeroPointTensor: *const DML_TENSOR_DESC,
pub BiasTensor: *const DML_TENSOR_DESC,
pub OutputScaleTensor: *const DML_TENSOR_DESC,
pub OutputZeroPointTensor: *const DML_TENSOR_DESC,
pub OutputTensor: *const DML_TENSOR_DESC,
pub DimensionCount: u32,
pub Strides: *const u32,
pub Dilations: *const u32,
pub StartPadding: *const u32,
pub EndPadding: *const u32,
pub GroupCount: u32,
}
Expand description
Required features: "Win32_AI_MachineLearning_DirectML"
Fields
InputTensor: *const DML_TENSOR_DESC
InputScaleTensor: *const DML_TENSOR_DESC
InputZeroPointTensor: *const DML_TENSOR_DESC
FilterTensor: *const DML_TENSOR_DESC
FilterScaleTensor: *const DML_TENSOR_DESC
FilterZeroPointTensor: *const DML_TENSOR_DESC
BiasTensor: *const DML_TENSOR_DESC
OutputScaleTensor: *const DML_TENSOR_DESC
OutputZeroPointTensor: *const DML_TENSOR_DESC
OutputTensor: *const DML_TENSOR_DESC
DimensionCount: u32
Strides: *const u32
Dilations: *const u32
StartPadding: *const u32
EndPadding: *const u32
GroupCount: u32
Trait Implementations
impl Copy for DML_QUANTIZED_LINEAR_CONVOLUTION_OPERATOR_DESC
Auto Trait Implementations
impl RefUnwindSafe for DML_QUANTIZED_LINEAR_CONVOLUTION_OPERATOR_DESC
impl !Send for DML_QUANTIZED_LINEAR_CONVOLUTION_OPERATOR_DESC
impl !Sync for DML_QUANTIZED_LINEAR_CONVOLUTION_OPERATOR_DESC
impl Unpin for DML_QUANTIZED_LINEAR_CONVOLUTION_OPERATOR_DESC
impl UnwindSafe for DML_QUANTIZED_LINEAR_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