ArmNN
 24.02
BroadcastToDescriptor Struct Reference

#include <Descriptors.hpp>

Inheritance diagram for BroadcastToDescriptor:
[legend]
Collaboration diagram for BroadcastToDescriptor:
[legend]

Public Member Functions

 BroadcastToDescriptor ()
 
 BroadcastToDescriptor (const TensorShape &shape)
 
bool operator== (const BroadcastToDescriptor &rhs) const
 
- Public Member Functions inherited from BaseDescriptor
virtual bool IsNull () const
 
virtual ~BaseDescriptor ()=default
 

Public Attributes

TensorShape m_BroadcastToShape
 Target shape value. More...
 

Detailed Description

Definition at line 1659 of file Descriptors.hpp.

Constructor & Destructor Documentation

◆ BroadcastToDescriptor() [1/2]

Definition at line 1661 of file Descriptors.hpp.

1662  : m_BroadcastToShape()
1663  {}

◆ BroadcastToDescriptor() [2/2]

BroadcastToDescriptor ( const TensorShape shape)
inlineexplicit

Definition at line 1665 of file Descriptors.hpp.

1666  : m_BroadcastToShape(shape)
1667  {}

Member Function Documentation

◆ operator==()

bool operator== ( const BroadcastToDescriptor rhs) const
inline

Definition at line 1669 of file Descriptors.hpp.

1670  {
1671  return m_BroadcastToShape == rhs.m_BroadcastToShape;
1672  }

References BroadcastToDescriptor::m_BroadcastToShape.

Member Data Documentation

◆ m_BroadcastToShape

TensorShape m_BroadcastToShape

Target shape value.

Definition at line 1675 of file Descriptors.hpp.

Referenced by BroadcastToLayer::InferOutputShapes(), and BroadcastToDescriptor::operator==().


The documentation for this struct was generated from the following file:
armnn::BroadcastToDescriptor::m_BroadcastToShape
TensorShape m_BroadcastToShape
Target shape value.
Definition: Descriptors.hpp:1675