pub struct ChannelConvCompressorRecord<B: Backend> {
pub conv: <CausalDepthwiseConv1d<B> as Module<B>>::Record,
pub d_model: <usize as Module<B>>::Record,
pub d_value: <usize as Module<B>>::Record,
}Expand description
The record type for the module.
Fields§
§conv: <CausalDepthwiseConv1d<B> as Module<B>>::RecordThe module record associative type.
d_model: <usize as Module<B>>::RecordThe module record associative type.
d_value: <usize as Module<B>>::RecordThe module record associative type.
Trait Implementations§
Source§impl<B: Backend> Record<B> for ChannelConvCompressorRecord<B>
impl<B: Backend> Record<B> for ChannelConvCompressorRecord<B>
Source§type Item<S: PrecisionSettings> = ChannelConvCompressorRecordItem<B, S>
type Item<S: PrecisionSettings> = ChannelConvCompressorRecordItem<B, S>
Type of the item that can be serialized and deserialized.
Auto Trait Implementations§
impl<B> !Freeze for ChannelConvCompressorRecord<B>
impl<B> !RefUnwindSafe for ChannelConvCompressorRecord<B>
impl<B> Send for ChannelConvCompressorRecord<B>
impl<B> !Sync for ChannelConvCompressorRecord<B>
impl<B> Unpin for ChannelConvCompressorRecord<B>where
<B as Backend>::FloatTensorPrimitive: Unpin,
<B as Backend>::QuantizedTensorPrimitive: Unpin,
<B as Backend>::Device: Unpin,
impl<B> UnsafeUnpin for ChannelConvCompressorRecord<B>where
<B as Backend>::FloatTensorPrimitive: UnsafeUnpin,
<B as Backend>::QuantizedTensorPrimitive: UnsafeUnpin,
<B as Backend>::Device: UnsafeUnpin,
impl<B> !UnwindSafe for ChannelConvCompressorRecord<B>
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