ArmNN
 21.11
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 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 1420 of file Descriptors.hpp.

Constructor & Destructor Documentation

◆ ChannelShuffleDescriptor() [1/2]

Definition at line 1422 of file Descriptors.hpp.

1423  : m_NumGroups(0), m_Axis(0)
1424  {}
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 1426 of file Descriptors.hpp.

1427  : m_NumGroups(numGroups), m_Axis(axis)
1428  {}
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 1430 of file Descriptors.hpp.

References ChannelShuffleDescriptor::m_NumGroups.

1431  {
1432  return m_NumGroups == rhs.m_NumGroups;
1433  }
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: