MCPcopy Create free account
hub / github.com/ARM-software/armnn / IsEqual

Method IsEqual

include/armnn/Types.hpp:368–376  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

366 ConstIterator end() const { return m_DimMappings.begin() + m_NumDimMappings; }
367
368 bool IsEqual(const PermutationVector& other) const
369 {
370 if (m_NumDimMappings != other.m_NumDimMappings) return false;
371 for (unsigned int i = 0; i < m_NumDimMappings; ++i)
372 {
373 if (m_DimMappings[i] != other.m_DimMappings[i]) return false;
374 }
375 return true;
376 }
377
378 bool IsInverse(const PermutationVector& other) const
379 {

Callers 2

operator ==Method · 0.45
operator ==Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected