ArmNN
 21.08
CommonTestUtils.hpp
Go to the documentation of this file.
1 //
2 // Copyright © 2017 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
8 #include <Graph.hpp>
9 #include <SubgraphView.hpp>
10 #include <SubgraphViewSelector.hpp>
11 #include <ResolveType.hpp>
12 
14 
15 #include <armnn/Types.hpp>
17 
18 #include <test/TestUtils.hpp>
19 
20 #include <algorithm>
21 #include <random>
22 #include <vector>
23 
24 // Checks that two collections have the exact same contents (in any order)
25 // The given collections do not have to contain duplicates
26 // Cannot use std::sort here because std lists have their own std::list::sort method
27 template <typename CollectionType>
28 bool AreEqual(const CollectionType& lhs, const CollectionType& rhs)
29 {
30  if (lhs.size() != rhs.size())
31  {
32  return false;
33  }
34 
35  auto lhs_it = std::find_if(lhs.begin(), lhs.end(), [&rhs](auto& item)
36  {
37  return std::find(rhs.begin(), rhs.end(), item) == rhs.end();
38  });
39 
40  return lhs_it == lhs.end();
41 }
42 
43 // Checks that the given collection contains the specified item
44 template <typename CollectionType>
45 bool Contains(const CollectionType& collection, const typename CollectionType::value_type& item)
46 {
47  return std::find(collection.begin(), collection.end(), item) != collection.end();
48 }
49 
50 // Checks that the given map contains the specified key
51 template <typename MapType>
52 bool Contains(const MapType& map, const typename MapType::key_type& key)
53 {
54  return map.find(key) != map.end();
55 }
56 
57 // Utility template for comparing tensor elements
58 template<armnn::DataType ArmnnType, typename T = armnn::ResolveType<ArmnnType>>
59 bool Compare(T a, T b, float tolerance = 0.000001f)
60 {
61  if (ArmnnType == armnn::DataType::Boolean)
62  {
63  // NOTE: Boolean is represented as uint8_t (with zero equals
64  // false and everything else equals true), therefore values
65  // need to be casted to bool before comparing them
66  return static_cast<bool>(a) == static_cast<bool>(b);
67  }
68 
69  // NOTE: All other types can be cast to float and compared with
70  // a certain level of tolerance
71  return std::fabs(static_cast<float>(a) - static_cast<float>(b)) <= tolerance;
72 }
73 
74 template <typename ConvolutionLayer>
75 void SetWeightAndBias(ConvolutionLayer* layer, const armnn::TensorInfo& weightInfo, const armnn::TensorInfo& biasInfo)
76 {
77  layer->m_Weight = std::make_unique<armnn::ScopedTensorHandle>(weightInfo);
78  layer->m_Bias = std::make_unique<armnn::ScopedTensorHandle>(biasInfo);
79 
80  layer->m_Weight->Allocate();
81  layer->m_Bias->Allocate();
82 }
83 
84 armnn::SubgraphView::InputSlots CreateInputsFrom(const std::vector<armnn::Layer*>& layers);
85 
86 armnn::SubgraphView::OutputSlots CreateOutputsFrom(const std::vector<armnn::Layer*>& layers);
87 
91 
93 
94 armnn::TensorShape MakeTensorShape(unsigned int batches,
95  unsigned int channels,
96  unsigned int height,
97  unsigned int width,
98  armnn::DataLayout layout);
99 
100 template<typename DataType>
101 static std::vector<DataType> GenerateRandomData(size_t size)
102 {
103  constexpr bool isIntegerType = std::is_integral<DataType>::value;
104  using Distribution =
105  typename std::conditional<isIntegerType,
106  std::uniform_int_distribution<DataType>,
107  std::uniform_real_distribution<DataType>>::type;
108 
109  static constexpr DataType lowerLimit = std::numeric_limits<DataType>::min();
110  static constexpr DataType upperLimit = std::numeric_limits<DataType>::max();
111 
112  static Distribution distribution(lowerLimit, upperLimit);
113  static std::default_random_engine generator;
114 
115  std::vector<DataType> randomData(size);
116  generate(randomData.begin(), randomData.end(), []() { return distribution(generator); });
117 
118  return randomData;
119 }
DataLayout
Definition: Types.hpp:53
armnn::SubgraphView::InputSlots CreateInputsFrom(const std::vector< armnn::Layer *> &layers)
armnn::SubgraphView::SubgraphViewPtr CreateSubgraphViewFrom(armnn::SubgraphView::InputSlots &&inputs, armnn::SubgraphView::OutputSlots &&outputs, armnn::SubgraphView::Layers &&layers)
armnn::IBackendInternalUniquePtr CreateBackendObject(const armnn::BackendId &backendId)
bool AreEqual(const CollectionType &lhs, const CollectionType &rhs)
armnn::TensorShape MakeTensorShape(unsigned int batches, unsigned int channels, unsigned int height, unsigned int width, armnn::DataLayout layout)
std::vector< OutputSlot * > OutputSlots
armnn::SubgraphView::OutputSlots CreateOutputsFrom(const std::vector< armnn::Layer *> &layers)
std::unique_ptr< SubgraphView > SubgraphViewPtr
DataType
Definition: Types.hpp:35
bool Contains(const CollectionType &collection, const typename CollectionType::value_type &item)
std::vector< InputSlot * > InputSlots
void SetWeightAndBias(ConvolutionLayer *layer, const armnn::TensorInfo &weightInfo, const armnn::TensorInfo &biasInfo)
std::unique_ptr< IBackendInternal > IBackendInternalUniquePtr
std::list< Layer * > Layers
bool Compare(T a, T b, float tolerance=0.000001f)