blob: eb1c083667cbf8ced95d01e7c2aa4a748446f5e5 [file] [log] [blame]
Sanghoon Lee24486d62017-09-04 15:51:21 +01001/*
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +01002 * Copyright (c) 2017-2018 ARM Limited.
Sanghoon Lee24486d62017-09-04 15:51:21 +01003 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24#ifndef ARM_COMPUTE_TEST_DEPTH_CONVERT_FIXTURE
25#define ARM_COMPUTE_TEST_DEPTH_CONVERT_FIXTURE
26
27#include "arm_compute/core/TensorShape.h"
28#include "arm_compute/core/Types.h"
29#include "tests/AssetsLibrary.h"
30#include "tests/Globals.h"
31#include "tests/IAccessor.h"
32#include "tests/framework/Asserts.h"
33#include "tests/framework/Fixture.h"
Sanghoon Lee24486d62017-09-04 15:51:21 +010034#include "tests/validation/Helpers.h"
Georgios Pinitas5a7e7762017-12-01 16:27:29 +000035#include "tests/validation/reference/DepthConvertLayer.h"
Sanghoon Lee24486d62017-09-04 15:51:21 +010036
37namespace arm_compute
38{
39namespace test
40{
41namespace validation
42{
43template <typename TensorType, typename AccessorType, typename FunctionType, typename T1, typename T2>
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000044class DepthConvertLayerValidationFixedPointFixture : public framework::Fixture
Sanghoon Lee24486d62017-09-04 15:51:21 +010045{
46public:
47 template <typename...>
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010048 void setup(TensorShape shape, DataType dt_in, DataType dt_out, ConvertPolicy policy, uint32_t shift)
Sanghoon Lee24486d62017-09-04 15:51:21 +010049 {
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010050 _shift = shift;
51 _target = compute_target(shape, dt_in, dt_out, policy, shift);
52 _reference = compute_reference(shape, dt_in, dt_out, policy, shift);
Sanghoon Lee24486d62017-09-04 15:51:21 +010053 }
54
55protected:
56 template <typename U>
57 void fill(U &&tensor, int i)
58 {
59 library->fill_tensor_uniform(tensor, i);
60 }
61
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010062 TensorType compute_target(const TensorShape &shape, DataType dt_in, DataType dt_out, ConvertPolicy policy, uint32_t shift)
Sanghoon Lee24486d62017-09-04 15:51:21 +010063 {
64 // Create tensors
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010065 TensorType src = create_tensor<TensorType>(shape, dt_in, 1);
66 TensorType dst = create_tensor<TensorType>(shape, dt_out, 1);
Sanghoon Lee24486d62017-09-04 15:51:21 +010067
68 // Create and configure function
69 FunctionType depth_convert;
70 depth_convert.configure(&src, &dst, policy, shift);
71
72 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
73 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
74
75 // Allocate tensors
76 src.allocator()->allocate();
77 dst.allocator()->allocate();
78
79 ARM_COMPUTE_EXPECT(!src.info()->is_resizable(), framework::LogLevel::ERRORS);
80 ARM_COMPUTE_EXPECT(!dst.info()->is_resizable(), framework::LogLevel::ERRORS);
81
82 // Fill tensors
83 fill(AccessorType(src), 0);
84
85 // Compute function
86 depth_convert.run();
87
88 return dst;
89 }
90
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010091 SimpleTensor<T2> compute_reference(const TensorShape &shape, DataType dt_in, DataType dt_out, ConvertPolicy policy, uint32_t shift)
Sanghoon Lee24486d62017-09-04 15:51:21 +010092 {
93 // Create reference
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010094 SimpleTensor<T1> src{ shape, dt_in, 1 };
Sanghoon Lee24486d62017-09-04 15:51:21 +010095
96 // Fill reference
97 fill(src, 0);
98
99 return reference::depth_convert<T1, T2>(src, dt_out, policy, shift);
100 }
101
102 TensorType _target{};
103 SimpleTensor<T2> _reference{};
Sanghoon Lee24486d62017-09-04 15:51:21 +0100104 int _shift{};
105};
106template <typename TensorType, typename AccessorType, typename FunctionType, typename T1, typename T2>
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000107class DepthConvertLayerValidationFixture : public DepthConvertLayerValidationFixedPointFixture<TensorType, AccessorType, FunctionType, T1, T2>
Sanghoon Lee24486d62017-09-04 15:51:21 +0100108{
109public:
110 template <typename...>
111 void setup(TensorShape shape, DataType dt_in, DataType dt_out, ConvertPolicy policy, uint32_t shift)
112 {
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100113 DepthConvertLayerValidationFixedPointFixture<TensorType, AccessorType, FunctionType, T1, T2>::setup(shape, dt_in, dt_out, policy, shift);
Sanghoon Lee24486d62017-09-04 15:51:21 +0100114 }
115};
116template <typename TensorType, typename AccessorType, typename FunctionType, typename T1, typename T2>
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000117class DepthConvertLayerValidationFractionalBitsFixture : public DepthConvertLayerValidationFixedPointFixture<TensorType, AccessorType, FunctionType, T1, T2>
Sanghoon Lee24486d62017-09-04 15:51:21 +0100118{
119public:
120 template <typename...>
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100121 void setup(TensorShape shape, DataType dt_in, DataType dt_out, ConvertPolicy policy)
Sanghoon Lee24486d62017-09-04 15:51:21 +0100122 {
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100123 DepthConvertLayerValidationFixedPointFixture<TensorType, AccessorType, FunctionType, T1, T2>::setup(shape, dt_in, dt_out, policy, 0);
Sanghoon Lee24486d62017-09-04 15:51:21 +0100124 }
125};
126} // namespace validation
127} // namespace test
128} // namespace arm_compute
129#endif /* ARM_COMPUTE_TEST_DEPTH_CONVERT_FIXTURE */