ArmNN
 21.02
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 Visit##name##Layer(const armnn::IConnectableLayer* layer, \
19  const char* layerName = nullptr) override \
20  { \
21  CheckLayerPointer(layer); \
22  CheckLayerName(layerName); \
23  } \
24 };
25 
26 } // anonymous namespace
27 
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