pub struct Conv1dIm2colConfig {
pub batch: usize,
pub channels_in: usize,
pub input_length: usize,
pub kernel_size: usize,
pub stride: usize,
pub dilation: usize,
pub groups: usize,
pub left_padding: usize,
pub right_padding: usize,
pub input_batch_stride: usize,
}Fields§
§batch: usize§channels_in: usize§input_length: usize§kernel_size: usize§stride: usize§dilation: usize§groups: usize§left_padding: usize§right_padding: usize§input_batch_stride: usizeImplementations§
Source§impl Conv1dIm2colConfig
impl Conv1dIm2colConfig
pub fn output_length(self) -> Result<usize>
pub fn output_values_per_batch(self) -> Result<usize>
Trait Implementations§
Source§impl Clone for Conv1dIm2colConfig
impl Clone for Conv1dIm2colConfig
Source§fn clone(&self) -> Conv1dIm2colConfig
fn clone(&self) -> Conv1dIm2colConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for Conv1dIm2colConfig
Source§impl Debug for Conv1dIm2colConfig
impl Debug for Conv1dIm2colConfig
impl Eq for Conv1dIm2colConfig
Source§impl PartialEq for Conv1dIm2colConfig
impl PartialEq for Conv1dIm2colConfig
Source§fn eq(&self, other: &Conv1dIm2colConfig) -> bool
fn eq(&self, other: &Conv1dIm2colConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for Conv1dIm2colConfig
Auto Trait Implementations§
impl Freeze for Conv1dIm2colConfig
impl RefUnwindSafe for Conv1dIm2colConfig
impl Send for Conv1dIm2colConfig
impl Sync for Conv1dIm2colConfig
impl Unpin for Conv1dIm2colConfig
impl UnsafeUnpin for Conv1dIm2colConfig
impl UnwindSafe for Conv1dIm2colConfig
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