24 #ifndef SRC_CORE_NEON_KERNELS_CONV3D_LIST_H 25 #define SRC_CORE_NEON_KERNELS_CONV3D_LIST_H 47 using tag_type =
typename vtype::tag_type;
48 constexpr
int num_elems_read_per_iteration = 16 /
sizeof(T);
77 Window window_out = window;
90 const T *biases_ptr =
nullptr;
98 const int in_w_start_t =
static_cast<int>(
id.y()) * conv_stride_w - conv_pad_left;
99 const int in_h_start_t =
static_cast<int>(
id.z()) * conv_stride_h - conv_pad_top;
100 const int in_d_start_t =
static_cast<int>(
id[3]) * conv_stride_d - conv_pad_front;
101 const int in_w_end_t = in_w_start_t + kernel_dim_w;
102 const int in_h_end_t = in_h_start_t + kernel_dim_h;
103 const int in_d_end_t = in_d_start_t + kernel_dim_d;
106 const int in_w_start = std::max(in_w_start_t, 0);
107 const int in_h_start = std::max(in_h_start_t, 0);
108 const int in_d_start = std::max(in_d_start_t, 0);
109 const int in_w_end = std::min(in_w_end_t, input_dim_w);
110 const int in_h_end = std::min(in_h_end_t, input_dim_h);
111 const int in_d_end = std::min(in_d_end_t, input_dim_d);
114 const int wei_w_start = in_w_start - in_w_start_t;
115 const int wei_h_start = in_h_start - in_h_start_t;
116 const int wei_d_start = in_d_start - in_d_start_t;
117 const int wei_w_end = kernel_dim_w - (in_w_end_t - in_w_end);
118 const int wei_h_end = kernel_dim_h - (in_h_end_t - in_h_end);
119 const int wei_d_end = kernel_dim_d - (in_d_end_t - in_d_end);
130 const auto weights_ptr_start =
reinterpret_cast<const T *
>(wei.
ptr());
131 T out_temp =
static_cast<T
>(0);
132 T *out_ptr =
reinterpret_cast<T *
>(out.
ptr());
133 for(
int index_wei_d = wei_d_start, index_in_d = in_d_start; index_wei_d < wei_d_end; ++index_wei_d, ++index_in_d)
135 const auto in_ptr_d = in_ptr_start + index_in_d * input_stride_d;
136 const auto weights_ptr_d = weights_ptr_start + index_wei_d * kernel_stride_d;
137 for(
int index_wei_h = wei_h_start, index_in_h = in_h_start; index_wei_h < wei_h_end; ++index_wei_h, ++index_in_h)
139 const T *
const in_ptr_row = in_ptr_d + index_in_h * input_stride_h;
140 const T *
const weights_ptr_row = weights_ptr_d + index_wei_h * kernel_stride_h;
141 for(
int index_wei_w = wei_w_start, index_in_w = in_w_start; index_wei_w < wei_w_end; ++index_wei_w, ++index_in_w)
143 const T *in_ptr_mover = in_ptr_row + index_in_w * input_stride_w;
144 const T *weights_ptr_mover = weights_ptr_row + index_wei_w * kernel_stride_w;
146 vector_type out_temp_vec =
wrapper::vdup_n(static_cast<T>(0), tag_type());
148 for(; index_c_in <= index_c_in_end - num_elems_read_per_iteration;
149 index_c_in += num_elems_read_per_iteration, in_ptr_mover += num_elems_read_per_iteration)
153 for(
int k = 0;
k < num_elems_read_per_iteration; ++
k, weights_ptr_mover += index_c_out_end)
159 out_temp +=
vreduce(out_temp_vec);
160 for(; index_c_in < index_c_in_end; ++index_c_in, ++in_ptr_mover, weights_ptr_mover += index_c_out_end)
162 const auto src_val = *(in_ptr_mover);
163 const auto w_val = *(weights_ptr_mover);
164 out_temp += src_val * w_val;
169 *(
reinterpret_cast<T *
>(out_ptr + id_w[0])) = (biases_ptr !=
nullptr) ? out_temp + biases_ptr[id_w[0]] : out_temp;
178 #endif // SRC_CORE_NEON_KERNELS_CONV3D_LIST_H Window calculate_max_window(const ValidRegion &valid_region, const Steps &steps, bool skip_border, BorderSize border_size)
Descriptor used by the 3d Convolution function.
virtual size_t dimension(size_t index) const =0
Return the size of the requested dimension.
uint8x16_t vloadq(const uint8_t *ptr)
Describe one of the image's dimensions with a start, end and step.
const size_t conv_pad_top
decltype(strategy::transforms) typedef type
Interface for CPU tensor.
SimpleTensor< float > src
Copyright (c) 2017-2022 Arm Limited.
const size_t conv_pad_left
static constexpr size_t DimX
Alias for dimension 0 also known as X dimension.
size_t front
Padding across the depth dimenstion on the front, in elements.
Class to describe a number of elements in each dimension.
T z() const
Alias to access the size of the third dimension.
size_t height
Height of the 3D shape or object.
virtual uint8_t * buffer() const =0
Interface to be implemented by the child class to return a pointer to CPU memory. ...
Create the appropriate SIMD vector given its type and size in terms of bits.
virtual ITensorInfo * info() const =0
Interface to be implemented by the child class to return the tensor's metadata.
size_t top
Padding across the height dimenstion on the top, in elements.
constexpr uint8_t * ptr() const
Return a pointer to the current pixel.
size_t left
Padding across the width dimenstion on the left, in elements.
size_t width
Width of the 3D shape or object.
virtual size_t element_size() const =0
Element size in bytes calculated as data_size() * num_channels()
void set(size_t dimension, const Dimension &dim)
Set the values of a given dimension.
uint8x8_t vsetlane(const uint8_t value, const uint8x8_t vector, const unsigned int lane)
static constexpr size_t DimW
Alias for dimension 3 also known as W dimension.
virtual size_t offset_first_element_in_bytes() const =0
The offset from the beginning of the memory allocation to the first element of the tensor...
static constexpr size_t DimY
Alias for dimension 1 also known as Y dimension.
size_t depth
Depth of the 3D shape or object.
float vreduce(const float32x4_t &v)
Reduce a vector to be a scalar by accumulating all lanes in the vector.
static constexpr size_t DimZ
Alias for dimension 2 also known as Z dimension.
uint8x8_t vdup_n(uint8_t value, traits::vector_64_tag)
void execute_window_loop(const Window &w, L &&lambda_function, Ts &&... iterators)
Iterate through the passed window, automatically adjusting the iterators and calling the lambda_funct...
T y() const
Alias to access the size of the second dimension.
Includes all wrapper headers at once.
virtual const Strides & strides_in_bytes() const =0
The strides in bytes for accessing each dimension of the tensor.
uint8x8_t vmla(const uint8x8_t &a, const uint8x8_t &b, const uint8x8_t &c)
Iterator updated by execute_window_loop for each window element.
Describe a multidimensional execution window.
void directconv3d_float_neon_ndhwc(const ITensor *src0, const ITensor *src1, const ITensor *src2, ITensor *dst, const Conv3dInfo &conv_info, const Window &window)