blob: fe79b4a138a6c255f417d53991638d14fca15929 [file] [log] [blame]
Michalis Spyrou55b3d122018-05-09 09:59:23 +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#include "WidthConcatenateLayer.h"
25
26#include "tests/validation/FixedPoint.h"
27#include "tests/validation/Helpers.h"
28
29namespace arm_compute
30{
31namespace test
32{
33namespace validation
34{
35namespace reference
36{
37template <typename T>
38SimpleTensor<T> widthconcatenate_layer(const std::vector<SimpleTensor<T>> &srcs)
39{
40 // Create reference
41 std::vector<TensorShape> shapes;
42
43 for(const auto &src : srcs)
44 {
45 shapes.emplace_back(src.shape());
46 }
47
48 DataType dst_type = srcs.empty() ? DataType::UNKNOWN : srcs[0].data_type();
49 TensorShape dst_shape = calculate_width_concatenate_shape(shapes);
50 SimpleTensor<T> dst(dst_shape, dst_type);
51
52 // Compute reference
53 int width_offset = 0;
54 const int width_out = dst.shape().x();
55
56 // Set output tensor to 0
57 std::fill_n(dst.data(), dst.num_elements(), 0);
58
59 for(const auto &src : srcs)
60 {
61 ARM_COMPUTE_ERROR_ON(width_offset >= width_out);
62
63 const int width = src.shape().x();
64 const int height = src.shape().y();
65 const int depth = src.shape().z();
66
67 const T *src_ptr = src.data();
68 T *dst_ptr = dst.data();
69
70 for(int d = 0; d < depth; ++d)
71 {
72 for(int r = 0; r < height; ++r)
73 {
74 int offset = d * height + r;
75 std::copy(src_ptr, src_ptr + width, dst_ptr + width_offset + offset * width_out);
76 src_ptr += width;
77 }
78 }
79
80 width_offset += width;
81 }
82
83 return dst;
84}
85
86template SimpleTensor<float> widthconcatenate_layer(const std::vector<SimpleTensor<float>> &srcs);
87template SimpleTensor<half> widthconcatenate_layer(const std::vector<SimpleTensor<half>> &srcs);
88template SimpleTensor<qint8_t> widthconcatenate_layer(const std::vector<SimpleTensor<qint8_t>> &srcs);
89template SimpleTensor<qint16_t> widthconcatenate_layer(const std::vector<SimpleTensor<qint16_t>> &srcs);
90} // namespace reference
91} // namespace validation
92} // namespace test
93} // namespace arm_compute