pub struct AddLayerParams {
pub alpha: f32,
}Expand description
A layer that performs elementwise addition. This layer has limited broadcasting support. For general broadcasting see AddBroadcastableLayer.
.. code::
y = AddLayer(x1,x2,...)Requires 1 or more than 1 input and produces 1 output.
Input In general, there are no rank constraints. However, only certain set of shapes are broadcastable. For example: [B, 1, 1, 1], [B, C, 1, 1], [B, 1, H, W], [B, C, H, W] Output A blob with shape equal to the input blob.
If only one input is provided, scalar addition is performed:
.. math:: y = x + \alpha
Fields§
§alpha: f32Scalar to be added to the input. Only used if there is a single input.
Trait Implementations§
Source§impl Clone for AddLayerParams
impl Clone for AddLayerParams
Source§fn clone(&self) -> AddLayerParams
fn clone(&self) -> AddLayerParams
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 moreSource§impl Debug for AddLayerParams
impl Debug for AddLayerParams
Source§impl Default for AddLayerParams
impl Default for AddLayerParams
Source§impl Message for AddLayerParams
impl Message for AddLayerParams
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message to a buffer. Read more
Source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message to a newly allocated buffer.
Source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message with a length-delimiter to a buffer. Read more
Source§fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
Source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes an instance of the message from a buffer. Read more
Source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes a length-delimited instance of the message from the buffer.
Source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes an instance of the message from a buffer, and merges it into
self. Read moreSource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes a length-delimited instance of the message from buffer, and
merges it into
self.Source§impl PartialEq for AddLayerParams
impl PartialEq for AddLayerParams
Source§fn eq(&self, other: &AddLayerParams) -> bool
fn eq(&self, other: &AddLayerParams) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for AddLayerParams
impl StructuralPartialEq for AddLayerParams
Auto Trait Implementations§
impl Freeze for AddLayerParams
impl RefUnwindSafe for AddLayerParams
impl Send for AddLayerParams
impl Sync for AddLayerParams
impl Unpin for AddLayerParams
impl UnsafeUnpin for AddLayerParams
impl UnwindSafe for AddLayerParams
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