blob: 07501775e58b5bf92903fee0dc33045b1163fa1d [file] [log] [blame]
Georgios Pinitase1a352c2018-09-03 12:42:19 +01001/*
2 * Copyright (c) 2018 ARM Limited.
3 *
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_SPLIT_FIXTURE
25#define ARM_COMPUTE_TEST_SPLIT_FIXTURE
26
27#include "arm_compute/core/TensorShape.h"
28#include "arm_compute/core/Types.h"
29
30#include "tests/AssetsLibrary.h"
31#include "tests/Globals.h"
32#include "tests/IAccessor.h"
33#include "tests/RawLutAccessor.h"
34#include "tests/framework/Asserts.h"
35#include "tests/framework/Fixture.h"
36#include "tests/validation/Helpers.h"
37#include "tests/validation/reference/SliceOperations.h"
38
39#include <algorithm>
40
41namespace arm_compute
42{
43namespace test
44{
45namespace validation
46{
47template <typename TensorType, typename ITensorType, typename AccessorType, typename FunctionType, typename T>
48class SplitFixture : public framework::Fixture
49{
50public:
51 template <typename...>
52 void setup(TensorShape shape, unsigned int axis, unsigned int splits, DataType data_type)
53 {
54 _target = compute_target(shape, axis, splits, data_type);
55 _reference = compute_reference(shape, axis, splits, data_type);
56 }
57
58protected:
59 template <typename U>
60 void fill(U &&tensor, int i)
61 {
62 library->fill_tensor_uniform(tensor, i);
63 }
64
65 std::vector<TensorType> compute_target(const TensorShape &shape, unsigned int axis, unsigned int splits, DataType data_type)
66 {
67 // Create tensors
68 TensorType src = create_tensor<TensorType>(shape, data_type);
69 std::vector<TensorType> dsts(splits);
70 std::vector<ITensorType *> dsts_ptr;
71 for(auto &dst : dsts)
72 {
73 dsts_ptr.emplace_back(&dst);
74 }
75
76 // Create and configure function
77 FunctionType split;
78 split.configure(&src, dsts_ptr, axis);
79
80 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
81 ARM_COMPUTE_EXPECT(std::all_of(dsts.cbegin(), dsts.cend(), [](const TensorType & t)
82 {
83 return t.info()->is_resizable();
84 }),
85 framework::LogLevel::ERRORS);
86
87 // Allocate tensors
88 src.allocator()->allocate();
89 for(unsigned int i = 0; i < splits; ++i)
90 {
91 dsts[i].allocator()->allocate();
92 }
93
94 ARM_COMPUTE_EXPECT(!src.info()->is_resizable(), framework::LogLevel::ERRORS);
95 ARM_COMPUTE_EXPECT(std::all_of(dsts.cbegin(), dsts.cend(), [](const TensorType & t)
96 {
97 return !t.info()->is_resizable();
98 }),
99 framework::LogLevel::ERRORS);
100
101 // Fill tensors
102 fill(AccessorType(src), 0);
103
104 // Compute function
105 split.run();
106
107 return dsts;
108 }
109
110 std::vector<SimpleTensor<T>> compute_reference(const TensorShape &shape, unsigned int axis, unsigned int splits, DataType data_type)
111 {
112 // Create reference
113 SimpleTensor<T> src{ shape, data_type };
114 std::vector<SimpleTensor<T>> dsts;
115
116 // Fill reference
117 fill(src, 0);
118
119 // Calculate splice for each split
120 const size_t axis_split_step = shape[axis] / splits;
121 unsigned int axis_offset = 0;
122
123 // Start/End coordinates
124 Coordinates start_coords;
125 Coordinates end_coords;
126 for(unsigned int d = 0; d < shape.num_dimensions(); ++d)
127 {
128 end_coords.set(d, -1);
129 }
130
131 for(unsigned int i = 0; i < splits; ++i)
132 {
133 // Update coordinate on axis
134 start_coords.set(axis, axis_offset);
135 end_coords.set(axis, axis_offset + axis_split_step);
136
137 dsts.emplace_back(std::move(reference::slice(src, start_coords, end_coords)));
138
139 axis_offset += axis_split_step;
140 }
141
142 return dsts;
143 }
144
145 std::vector<TensorType> _target{};
146 std::vector<SimpleTensor<T>> _reference{};
147};
148} // namespace validation
149} // namespace test
150} // namespace arm_compute
151#endif /* ARM_COMPUTE_TEST_SPLIT_FIXTURE */