ArmNN
 21.11
TestNameOnlyLayerVisitor.hpp
Go to the documentation of this file.
1 //
2 // Copyright © 2017 Arm Ltd and Contributors. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 #pragma once
6 
7 #include "TestLayerVisitor.hpp"
8 
9 namespace
10 {
11 
12 #define DECLARE_TEST_NAME_ONLY_LAYER_VISITOR_CLASS(name) \
13 class Test##name##LayerVisitor : public armnn::TestLayerVisitor \
14 { \
15 public: \
16  explicit Test##name##LayerVisitor(const char* layerName = nullptr) : armnn::TestLayerVisitor(layerName) {}; \
17  \
18  void ExecuteStrategy(const armnn::IConnectableLayer* layer, \
19  const armnn::BaseDescriptor& descriptor, \
20  const std::vector<armnn::ConstTensor>& constants, \
21  const char* layerName, \
22  const armnn::LayerBindingId id = 0) override \
23  { \
24  armnn::IgnoreUnused(descriptor, constants, id); \
25  switch (layer->GetType()) \
26  { \
27  case armnn::LayerType::name: \
28  { \
29  CheckLayerPointer(layer); \
30  CheckLayerName(layerName); \
31  break; \
32  } \
33  default: \
34  { \
35  m_DefaultStrategy.Apply(GetLayerTypeAsCString(layer->GetType())); \
36  } \
37  } \
38  } \
39  \
40 };
41 
42 } // anonymous namespace
43 
float Dequantize(QuantizedType value, float scale, int32_t offset)
Dequantize an 8-bit data type into a floating point data type.
Definition: TypesUtils.cpp:46
#define DECLARE_TEST_NAME_ONLY_LAYER_VISITOR_CLASS(name)
QuantizedType Quantize(float value, float scale, int32_t offset)
Quantize a floating point data type into an 8-bit data type.
Definition: TypesUtils.cpp:30