Struct DML_ADAM_OPTIMIZER_OPERATOR_DESC
#[repr(C)]pub struct DML_ADAM_OPTIMIZER_OPERATOR_DESC {
pub InputParametersTensor: *const DML_TENSOR_DESC,
pub InputFirstMomentTensor: *const DML_TENSOR_DESC,
pub InputSecondMomentTensor: *const DML_TENSOR_DESC,
pub GradientTensor: *const DML_TENSOR_DESC,
pub TrainingStepTensor: *const DML_TENSOR_DESC,
pub OutputParametersTensor: *const DML_TENSOR_DESC,
pub OutputFirstMomentTensor: *const DML_TENSOR_DESC,
pub OutputSecondMomentTensor: *const DML_TENSOR_DESC,
pub LearningRate: f32,
pub Beta1: f32,
pub Beta2: f32,
pub Epsilon: f32,
}
Fields§
§InputParametersTensor: *const DML_TENSOR_DESC
§InputFirstMomentTensor: *const DML_TENSOR_DESC
§InputSecondMomentTensor: *const DML_TENSOR_DESC
§GradientTensor: *const DML_TENSOR_DESC
§TrainingStepTensor: *const DML_TENSOR_DESC
§OutputParametersTensor: *const DML_TENSOR_DESC
§OutputFirstMomentTensor: *const DML_TENSOR_DESC
§OutputSecondMomentTensor: *const DML_TENSOR_DESC
§LearningRate: f32
§Beta1: f32
§Beta2: f32
§Epsilon: f32
Trait Implementations§
§impl Clone for DML_ADAM_OPTIMIZER_OPERATOR_DESC
impl Clone for DML_ADAM_OPTIMIZER_OPERATOR_DESC
§fn clone(&self) -> DML_ADAM_OPTIMIZER_OPERATOR_DESC
fn clone(&self) -> DML_ADAM_OPTIMIZER_OPERATOR_DESC
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 more§impl Debug for DML_ADAM_OPTIMIZER_OPERATOR_DESC
impl Debug for DML_ADAM_OPTIMIZER_OPERATOR_DESC
§impl Default for DML_ADAM_OPTIMIZER_OPERATOR_DESC
impl Default for DML_ADAM_OPTIMIZER_OPERATOR_DESC
impl Copy for DML_ADAM_OPTIMIZER_OPERATOR_DESC
impl StructuralPartialEq for DML_ADAM_OPTIMIZER_OPERATOR_DESC
Auto Trait Implementations§
impl Freeze for DML_ADAM_OPTIMIZER_OPERATOR_DESC
impl RefUnwindSafe for DML_ADAM_OPTIMIZER_OPERATOR_DESC
impl !Send for DML_ADAM_OPTIMIZER_OPERATOR_DESC
impl !Sync for DML_ADAM_OPTIMIZER_OPERATOR_DESC
impl Unpin for DML_ADAM_OPTIMIZER_OPERATOR_DESC
impl UnwindSafe for DML_ADAM_OPTIMIZER_OPERATOR_DESC
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