MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / operator==

Function operator==

arm_compute/core/Dimensions.h:281–284  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

279 */
280template <typename T>
281inline bool operator==(const Dimensions<T> &lhs, const Dimensions<T> &rhs)
282{
283 return ((lhs.num_dimensions() == rhs.num_dimensions()) && std::equal(lhs.cbegin(), lhs.cend(), rhs.cbegin()));
284}
285/** Check that given dimensions are not equal.
286 *
287 * @param[in] lhs Left-hand side Dimensions.

Callers

nothing calls this directly

Calls 3

num_dimensionsMethod · 0.45
cbeginMethod · 0.45
cendMethod · 0.45

Tested by

no test coverage detected