26 template <
typename CollectionType>
27 bool AreEqual(
const CollectionType& lhs,
const CollectionType& rhs)
29 if (lhs.size() != rhs.size())
34 auto lhs_it = std::find_if(lhs.begin(), lhs.end(), [&rhs](
auto& item)
36 return std::find(rhs.begin(), rhs.end(), item) == rhs.end();
39 return lhs_it == lhs.end();
43 template <
typename CollectionType>
44 bool Contains(
const CollectionType& collection,
const typename CollectionType::value_type& item)
46 return std::find(collection.begin(), collection.end(), item) != collection.end();
50 template <
typename MapType>
51 bool Contains(
const MapType& map,
const typename MapType::key_type& key)
53 return map.find(key) != map.end();
57 template<armnn::DataType ArmnnType,
typename T = armnn::ResolveType<ArmnnType>>
58 inline bool Compare(T a, T b,
float tolerance = 0.000001f)
65 return static_cast<bool>(a) ==
static_cast<bool>(b);
70 return std::fabs(
static_cast<float>(a) -
static_cast<float>(b)) <= tolerance;
74 std::vector<unsigned int> ignoreSlots = {});
77 std::vector<unsigned int> ignoreSlots = {});
88 unsigned int channels,
93 template<
typename DataType>
94 static std::vector<DataType> GenerateRandomData(
size_t size)
96 constexpr
bool isIntegerType = std::is_integral<DataType>::value;
98 typename std::conditional<isIntegerType,
99 std::uniform_int_distribution<DataType>,
100 std::uniform_real_distribution<DataType>>::type;
102 static constexpr
DataType lowerLimit = std::numeric_limits<DataType>::min();
103 static constexpr
DataType upperLimit = std::numeric_limits<DataType>::max();
105 static Distribution distribution(lowerLimit, upperLimit);
106 static std::default_random_engine generator;
108 std::vector<DataType> randomData(size);
109 generate(randomData.begin(), randomData.end(), []() { return distribution(generator); });