blob: 1ab4e6367b5b9155310fc568a5b544b3dd01238c [file] [log] [blame]
Sheri Zhangfc6744a2021-01-13 15:54:05 +00001/*
2 * Copyright (c) 2021 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 SRC_CORE_NEON_KERNELS_SUB_LIST_H
25#define SRC_CORE_NEON_KERNELS_SUB_LIST_H
26
27#include "arm_compute/core/Types.h"
28#include "arm_compute/core/utils/misc/Traits.h"
29#include "src/core/NEON/wrapper/wrapper.h"
30
31namespace arm_compute
32{
33namespace cpu
34{
35#define DECLARE_SUB_KERNEL(func_name) \
36 void func_name(const ITensor *src0, const ITensor *src1, ITensor *dst, const ConvertPolicy &policy, const Window &window)
37
38DECLARE_SUB_KERNEL(sub_qasymm8_neon);
39DECLARE_SUB_KERNEL(sub_qasymm8_signed_neon);
40DECLARE_SUB_KERNEL(sub_qsymm16_neon);
41DECLARE_SUB_KERNEL(sub_s16_u8_s16_neon);
42DECLARE_SUB_KERNEL(sub_u8_s16_s16_neon);
43DECLARE_SUB_KERNEL(sub_u8_u8_s16_neon);
44
45#undef DECLARE_SUB_KERNEL
46
47template <typename T>
48void sub_same_neon(const ITensor *src0, const ITensor *src1, ITensor *dst, const ConvertPolicy &policy, const Window &window)
49{
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +000050 /** SIMD vector tag type. */
Sheri Zhangfc6744a2021-01-13 15:54:05 +000051 using ExactTagType = typename wrapper::traits::neon_bitvector_tag_t<T, wrapper::traits::BitWidth::W128>;
52
53 bool is_sat = policy == ConvertPolicy::SATURATE;
54
55 // Create input windows
56 Window input1_win = window.broadcast_if_dimension_le_one(src0->info()->tensor_shape());
57 Window input2_win = window.broadcast_if_dimension_le_one(src1->info()->tensor_shape());
58
59 // Clear X Dimension on execution window as we handle manually
60 Window win = window;
61 win.set(Window::DimX, Window::Dimension(0, 1, 1));
62
63 constexpr int window_step_x = 16 / sizeof(T);
64 const auto window_start_x = static_cast<int>(window.x().start());
65 const auto window_end_x = static_cast<int>(window.x().end());
66 const bool is_broadcast_across_x = src0->info()->tensor_shape().x() != src1->info()->tensor_shape().x();
67
68 Iterator input1(src0, window.broadcast_if_dimension_le_one(src0->info()->tensor_shape()));
69 Iterator input2(src1, window.broadcast_if_dimension_le_one(src1->info()->tensor_shape()));
70 Iterator output(dst, window);
71
72 if(is_broadcast_across_x)
73 {
74 const bool is_broadcast_input_2 = input2_win.x().step() == 0;
75 Window broadcast_win = is_broadcast_input_2 ? input2_win : input1_win;
76 Window non_broadcast_win = !is_broadcast_input_2 ? input2_win : input1_win;
77 const ITensor *broadcast_tensor = is_broadcast_input_2 ? src1 : src0;
78 const ITensor *non_broadcast_tensor = !is_broadcast_input_2 ? src1 : src0;
79
80 // Clear X Dimension on execution window as we handle manually
81 non_broadcast_win.set(Window::DimX, Window::Dimension(0, 1, 1));
82
83 Iterator broadcast_input(broadcast_tensor, broadcast_win);
84 Iterator non_broadcast_input(non_broadcast_tensor, non_broadcast_win);
85 Iterator output(dst, win);
86
87 execute_window_loop(win, [&](const Coordinates &)
88 {
89 const auto non_broadcast_input_ptr = reinterpret_cast<const T *>(non_broadcast_input.ptr());
90 const auto output_ptr = reinterpret_cast<T *>(output.ptr());
91
92 const T broadcast_value = *reinterpret_cast<const T *>(broadcast_input.ptr());
93 const auto broadcast_value_vec = wrapper::vdup_n(broadcast_value, ExactTagType{});
94
95 // Compute S elements per iteration
96 int x = window_start_x;
97 for(; x <= (window_end_x - window_step_x); x += window_step_x)
98 {
99 const auto non_broadcast_v = wrapper::vloadq(non_broadcast_input_ptr + x);
100 auto res = is_sat ? wrapper::vqsub(broadcast_value_vec, non_broadcast_v) : wrapper::vsub(broadcast_value_vec, non_broadcast_v);
101 if(is_broadcast_input_2)
102 {
103 res = wrapper::vmul(res, wrapper::vdup_n(static_cast<T>(-1), ExactTagType{}));
104 }
105 wrapper::vstore(output_ptr + x, res);
106 }
107
108 // Compute left-over elements
109 for(; x < window_end_x; ++x)
110 {
111 const auto non_broadcast_v = *(non_broadcast_input_ptr + x);
112 auto res = is_sat ? wrapper::sub_sat(broadcast_value, non_broadcast_v) : broadcast_value - non_broadcast_v;
113 if(is_broadcast_input_2)
114 {
115 res = static_cast<T>(-1) * res;
116 }
117
118 *(output_ptr + x) = res;
119 }
120 },
121 broadcast_input, non_broadcast_input, output);
122 }
123 else
124 {
125 // Clear X Dimension on execution window as we handle manually
126 input1_win.set(Window::DimX, Window::Dimension(0, 1, 1));
127 input2_win.set(Window::DimX, Window::Dimension(0, 1, 1));
128
129 Iterator input1(src0, input1_win);
130 Iterator input2(src1, input2_win);
131 Iterator output(dst, win);
132
133 execute_window_loop(win, [&](const Coordinates &)
134 {
135 const auto input1_ptr = reinterpret_cast<const T *>(input1.ptr());
136 const auto input2_ptr = reinterpret_cast<const T *>(input2.ptr());
137 const auto output_ptr = reinterpret_cast<T *>(output.ptr());
138
139 // Compute S elements per iteration
140 int x = window_start_x;
141 for(; x <= (window_end_x - window_step_x); x += window_step_x)
142 {
143 const auto val1 = wrapper::vloadq(input1_ptr + x);
144 const auto val2 = wrapper::vloadq(input2_ptr + x);
145 const auto res = is_sat ? wrapper::vqsub(val1, val2) : wrapper::vsub(val1, val2);
146 wrapper::vstore(output_ptr + x, res);
147 }
148
149 // Compute left-over elements
150 for(; x < window_end_x; ++x)
151 {
152 const auto val1 = *(input1_ptr + x);
153 const auto val2 = *(input2_ptr + x);
154 *(output_ptr + x) = is_sat ? wrapper::sub_sat(val1, val2) : val1 - val2;
155 }
156 },
157 input1, input2, output);
158 }
159}
160} // namespace cpu
161} // namespace arm_compute
Sheri Zhangac6499a2021-02-10 15:32:38 +0000162#endif // SRC_CORE_NEON_KERNELS_SUB_LIST_H