blob: 99412b969482ccef18c76654240a318db8f34b35 [file] [log] [blame]
narpra01b9546cf2018-11-20 15:21:28 +00001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
Matteo Martincighf02e6cd2019-05-17 12:15:30 +01005
narpra01b9546cf2018-11-20 15:21:28 +00006#pragma once
7
8#include <Graph.hpp>
Matteo Martincighf02e6cd2019-05-17 12:15:30 +01009#include <SubgraphView.hpp>
10#include <SubgraphViewSelector.hpp>
Keith Davis3674f142020-08-16 23:44:15 +010011#include <ResolveType.hpp>
narpra01b9546cf2018-11-20 15:21:28 +000012
Matteo Martincighc601aa62019-10-29 15:03:22 +000013#include <armnn/BackendRegistry.hpp>
14
Keith Davis3674f142020-08-16 23:44:15 +010015#include <armnn/Types.hpp>
James Conroy1f58f032021-04-27 17:13:27 +010016#include <backendsCommon/TensorHandle.hpp>
narpra01b9546cf2018-11-20 15:21:28 +000017
Matteo Martincighbf0e7222019-06-20 17:17:45 +010018#include <test/TestUtils.hpp>
Matteo Martincighf02e6cd2019-05-17 12:15:30 +010019
Matteo Martincighbf0e7222019-06-20 17:17:45 +010020#include <algorithm>
Matteo Martincighf02e6cd2019-05-17 12:15:30 +010021
22// Checks that two collections have the exact same contents (in any order)
23// The given collections do not have to contain duplicates
24// Cannot use std::sort here because std lists have their own std::list::sort method
25template <typename CollectionType>
26bool AreEqual(const CollectionType& lhs, const CollectionType& rhs)
narpra01b9546cf2018-11-20 15:21:28 +000027{
Matteo Martincighf02e6cd2019-05-17 12:15:30 +010028 if (lhs.size() != rhs.size())
29 {
30 return false;
31 }
narpra01b9546cf2018-11-20 15:21:28 +000032
Matteo Martincighf02e6cd2019-05-17 12:15:30 +010033 auto lhs_it = std::find_if(lhs.begin(), lhs.end(), [&rhs](auto& item)
34 {
35 return std::find(rhs.begin(), rhs.end(), item) == rhs.end();
36 });
37
38 return lhs_it == lhs.end();
narpra01b9546cf2018-11-20 15:21:28 +000039}
40
Matteo Martincighf02e6cd2019-05-17 12:15:30 +010041// Checks that the given collection contains the specified item
42template <typename CollectionType>
43bool Contains(const CollectionType& collection, const typename CollectionType::value_type& item)
44{
45 return std::find(collection.begin(), collection.end(), item) != collection.end();
narpra01b9546cf2018-11-20 15:21:28 +000046}
Matteo Martincighf02e6cd2019-05-17 12:15:30 +010047
48// Checks that the given map contains the specified key
49template <typename MapType>
50bool Contains(const MapType& map, const typename MapType::key_type& key)
51{
52 return map.find(key) != map.end();
53}
54
Keith Davis3674f142020-08-16 23:44:15 +010055// Utility template for comparing tensor elements
56template<armnn::DataType ArmnnType, typename T = armnn::ResolveType<ArmnnType>>
57bool Compare(T a, T b, float tolerance = 0.000001f)
58{
59 if (ArmnnType == armnn::DataType::Boolean)
60 {
61 // NOTE: Boolean is represented as uint8_t (with zero equals
62 // false and everything else equals true), therefore values
63 // need to be casted to bool before comparing them
64 return static_cast<bool>(a) == static_cast<bool>(b);
65 }
66
67 // NOTE: All other types can be cast to float and compared with
68 // a certain level of tolerance
69 return std::fabs(static_cast<float>(a) - static_cast<float>(b)) <= tolerance;
70}
71
Matteo Martincighf02e6cd2019-05-17 12:15:30 +010072template <typename ConvolutionLayer>
73void SetWeightAndBias(ConvolutionLayer* layer, const armnn::TensorInfo& weightInfo, const armnn::TensorInfo& biasInfo)
74{
James Conroy1f58f032021-04-27 17:13:27 +010075 layer->m_Weight = std::make_unique<armnn::ScopedTensorHandle>(weightInfo);
76 layer->m_Bias = std::make_unique<armnn::ScopedTensorHandle>(biasInfo);
Matteo Martincighf02e6cd2019-05-17 12:15:30 +010077
78 layer->m_Weight->Allocate();
79 layer->m_Bias->Allocate();
80}
81
82armnn::SubgraphView::InputSlots CreateInputsFrom(const std::vector<armnn::Layer*>& layers);
83
84armnn::SubgraphView::OutputSlots CreateOutputsFrom(const std::vector<armnn::Layer*>& layers);
85
86armnn::SubgraphView::SubgraphViewPtr CreateSubgraphViewFrom(armnn::SubgraphView::InputSlots&& inputs,
87 armnn::SubgraphView::OutputSlots&& outputs,
88 armnn::SubgraphView::Layers&& layers);
89
90armnn::IBackendInternalUniquePtr CreateBackendObject(const armnn::BackendId& backendId);
Aron Virginas-Tar735a4502019-06-26 15:02:47 +010091
92armnn::TensorShape MakeTensorShape(unsigned int batches,
93 unsigned int channels,
94 unsigned int height,
95 unsigned int width,
Matteo Martincighc601aa62019-10-29 15:03:22 +000096 armnn::DataLayout layout);