ArmNN
 22.05
ChannelShuffleDescriptor Struct Reference

A ChannelShuffleDescriptor for the ChannelShuffle operator. More...

#include <Descriptors.hpp>

Inheritance diagram for ChannelShuffleDescriptor:
BaseDescriptor

Public Member Functions

 ChannelShuffleDescriptor ()
 
 ChannelShuffleDescriptor (const uint32_t &numGroups, const uint32_t &axis)
 
bool operator== (const ChannelShuffleDescriptor &rhs) const
 
- Public Member Functions inherited from BaseDescriptor
virtual bool IsNull () const
 
virtual ~BaseDescriptor ()=default
 

Public Attributes

uint32_t m_NumGroups
 Number of groups for the channel shuffle operation. More...
 
uint32_t m_Axis
 Axis to apply channel shuffle operation on. More...
 

Detailed Description

A ChannelShuffleDescriptor for the ChannelShuffle operator.

Definition at line 1536 of file Descriptors.hpp.

Constructor & Destructor Documentation

◆ ChannelShuffleDescriptor() [1/2]

Definition at line 1538 of file Descriptors.hpp.

1539  : m_NumGroups(0), m_Axis(0)
1540  {}
uint32_t m_NumGroups
Number of groups for the channel shuffle operation.
uint32_t m_Axis
Axis to apply channel shuffle operation on.

◆ ChannelShuffleDescriptor() [2/2]

ChannelShuffleDescriptor ( const uint32_t &  numGroups,
const uint32_t &  axis 
)
inline

Definition at line 1542 of file Descriptors.hpp.

1543  : m_NumGroups(numGroups), m_Axis(axis)
1544  {}
uint32_t m_NumGroups
Number of groups for the channel shuffle operation.
uint32_t m_Axis
Axis to apply channel shuffle operation on.

Member Function Documentation

◆ operator==()

bool operator== ( const ChannelShuffleDescriptor rhs) const
inline

Definition at line 1546 of file Descriptors.hpp.

References ChannelShuffleDescriptor::m_NumGroups.

1547  {
1548  return m_NumGroups == rhs.m_NumGroups;
1549  }
uint32_t m_NumGroups
Number of groups for the channel shuffle operation.

Member Data Documentation

◆ m_Axis

◆ m_NumGroups


The documentation for this struct was generated from the following file: