#[repr(C)]pub struct DML_AVERAGE_POOLING_GRAD_OPERATOR_DESC {
pub InputGradientTensor: *const DML_TENSOR_DESC,
pub OutputGradientTensor: *const DML_TENSOR_DESC,
pub DimensionCount: u32,
pub Strides: *const u32,
pub WindowSize: *const u32,
pub StartPadding: *const u32,
pub EndPadding: *const u32,
pub IncludePadding: BOOL,
}
Expand description
Required features: "Win32_AI_MachineLearning_DirectML"
, "Win32_Foundation"
Fields
InputGradientTensor: *const DML_TENSOR_DESC
OutputGradientTensor: *const DML_TENSOR_DESC
DimensionCount: u32
Strides: *const u32
WindowSize: *const u32
StartPadding: *const u32
EndPadding: *const u32
IncludePadding: BOOL
Trait Implementations
impl Copy for DML_AVERAGE_POOLING_GRAD_OPERATOR_DESC
Auto Trait Implementations
impl RefUnwindSafe for DML_AVERAGE_POOLING_GRAD_OPERATOR_DESC
impl !Send for DML_AVERAGE_POOLING_GRAD_OPERATOR_DESC
impl !Sync for DML_AVERAGE_POOLING_GRAD_OPERATOR_DESC
impl Unpin for DML_AVERAGE_POOLING_GRAD_OPERATOR_DESC
impl UnwindSafe for DML_AVERAGE_POOLING_GRAD_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