Struct DML_LSTM_OPERATOR_DESC
#[repr(C)]pub struct DML_LSTM_OPERATOR_DESC {Show 17 fields
pub InputTensor: *const DML_TENSOR_DESC,
pub WeightTensor: *const DML_TENSOR_DESC,
pub RecurrenceTensor: *const DML_TENSOR_DESC,
pub BiasTensor: *const DML_TENSOR_DESC,
pub HiddenInitTensor: *const DML_TENSOR_DESC,
pub CellMemInitTensor: *const DML_TENSOR_DESC,
pub SequenceLengthsTensor: *const DML_TENSOR_DESC,
pub PeepholeTensor: *const DML_TENSOR_DESC,
pub OutputSequenceTensor: *const DML_TENSOR_DESC,
pub OutputSingleTensor: *const DML_TENSOR_DESC,
pub OutputCellSingleTensor: *const DML_TENSOR_DESC,
pub ActivationDescCount: u32,
pub ActivationDescs: *const DML_OPERATOR_DESC,
pub Direction: DML_RECURRENT_NETWORK_DIRECTION,
pub ClipThreshold: f32,
pub UseClipThreshold: BOOL,
pub CoupleInputForget: BOOL,
}
Fields§
§InputTensor: *const DML_TENSOR_DESC
§WeightTensor: *const DML_TENSOR_DESC
§RecurrenceTensor: *const DML_TENSOR_DESC
§BiasTensor: *const DML_TENSOR_DESC
§HiddenInitTensor: *const DML_TENSOR_DESC
§CellMemInitTensor: *const DML_TENSOR_DESC
§SequenceLengthsTensor: *const DML_TENSOR_DESC
§PeepholeTensor: *const DML_TENSOR_DESC
§OutputSequenceTensor: *const DML_TENSOR_DESC
§OutputSingleTensor: *const DML_TENSOR_DESC
§OutputCellSingleTensor: *const DML_TENSOR_DESC
§ActivationDescCount: u32
§ActivationDescs: *const DML_OPERATOR_DESC
§Direction: DML_RECURRENT_NETWORK_DIRECTION
§ClipThreshold: f32
§UseClipThreshold: BOOL
§CoupleInputForget: BOOL
Trait Implementations§
§impl Clone for DML_LSTM_OPERATOR_DESC
impl Clone for DML_LSTM_OPERATOR_DESC
§fn clone(&self) -> DML_LSTM_OPERATOR_DESC
fn clone(&self) -> DML_LSTM_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_LSTM_OPERATOR_DESC
impl Debug for DML_LSTM_OPERATOR_DESC
§impl Default for DML_LSTM_OPERATOR_DESC
impl Default for DML_LSTM_OPERATOR_DESC
§impl PartialEq for DML_LSTM_OPERATOR_DESC
impl PartialEq for DML_LSTM_OPERATOR_DESC
impl Copy for DML_LSTM_OPERATOR_DESC
impl StructuralPartialEq for DML_LSTM_OPERATOR_DESC
Auto Trait Implementations§
impl Freeze for DML_LSTM_OPERATOR_DESC
impl RefUnwindSafe for DML_LSTM_OPERATOR_DESC
impl !Send for DML_LSTM_OPERATOR_DESC
impl !Sync for DML_LSTM_OPERATOR_DESC
impl Unpin for DML_LSTM_OPERATOR_DESC
impl UnwindSafe for DML_LSTM_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