51 using ElementsProcessed = Steps;
75 const int m = gemm_info.m();
76 const int n = gemm_info.n();
77 const int k = gemm_info.k();
86 if(gemm_info.reinterpret_input_as_3d())
95 if(dst->total_size() != 0)
105 std::pair<Status, Window>
validate_and_configure_window(
const ITensorInfo *src0, ITensorInfo *src1, ITensorInfo *dst,
const GEMMLHSMatrixInfo &lhs_info,
const GEMMRHSMatrixInfo &rhs_info,
106 const GEMMReshapeInfo &gemm_info, ElementsProcessed &num_elements_processed)
108 unsigned int &num_elems_processed_per_iteration_x = num_elements_processed[0];
109 unsigned int &num_elems_processed_per_iteration_y = num_elements_processed[1];
110 bool reinterpret_input_as_3d = gemm_info.reinterpret_input_as_3d();
111 bool reinterpret_dst_as_3d = (gemm_info.depth_output_gemm3d() != 0);
114 bool window_changed =
false;
118 if(reinterpret_input_as_3d == reinterpret_dst_as_3d)
120 reinterpret_dst_as_3d =
false;
126 TensorInfo tmp_info(*dst);
128 if(reinterpret_dst_as_3d)
132 TensorShape tmp_shape(dst->tensor_shape());
133 tmp_shape.collapse(2U, 1U);
134 tmp_info.set_tensor_shape(tmp_shape);
138 num_elems_processed_per_iteration_x = rhs_info.n0;
139 num_elems_processed_per_iteration_y = lhs_info.m0;
141 win =
calculate_max_window(tmp_info, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
144 AccessWindowStatic src1_access(src1, 0, 0,
152 Window collapsed = win;
153 const unsigned int dimension_to_collapse = std::min(static_cast<unsigned int>(dst->num_dimensions()), 2u);
154 collapsed = win.collapse(win, dimension_to_collapse);
157 return std::make_pair(err, collapsed);
182 if(_reinterpret_input_as_3d == _reinterpret_output_as_3d)
184 _reinterpret_input_as_3d =
false;
185 _reinterpret_output_as_3d =
false;
190 _slide_matrix_b = (src1->
num_dimensions() >= num_dimensions_src0);
192 ElementsProcessed num_elements_processed{};
197 ICLKernel::configure_internal(win_config.second);
202 const unsigned int internal_m = _reinterpret_output_as_3d ? gemm_info.
m() : dst->
dimension(1);
204 const unsigned int partial_store_m0 = internal_m % lhs_info.
m0;
205 const unsigned int partial_store_n0 = gemm_info.
n() % rhs_info.
n0;
209 const unsigned int internal_m0 = std::min(internal_m, lhs_info.
m0);
213 build_opts.
add_option_if(_reinterpret_input_as_3d,
"-DREINTERPRET_INPUT_AS_3D");
214 build_opts.
add_option_if(_reinterpret_output_as_3d,
"-DREINTERPRET_OUTPUT_AS_3D");
218 build_opts.
add_option_if(_use_dummy_work_items,
"-DDUMMY_WORK_ITEMS");
242 _config_id += (_reinterpret_input_as_3d ?
"3di_" :
"");
243 _config_id += (_reinterpret_output_as_3d ?
"3do_" :
"");
264 ElementsProcessed num_elements_processed{};
272 num_elements_processed)
287 if(src1->info()->num_dimensions() < 3)
299 if(_reinterpret_input_as_3d)
303 const unsigned int total_cross_plane_pad = src0->info()->padding().top + src0->info()->padding().bottom;
304 _kernel.setArg<cl_uint>(idx0,
static_cast<unsigned int>(total_cross_plane_pad));
307 if(_reinterpret_output_as_3d)
311 const unsigned int total_cross_plane_pad = dst->info()->padding().top + dst->info()->padding().bottom;
312 _kernel.setArg<cl_uint>(idx0,
static_cast<unsigned int>(total_cross_plane_pad));
322 slice_b = slice_matrix_b;
325 unsigned int idx = 0;
329 _kernel.setArg<cl_uint>(idx++,
static_cast<unsigned int>(src0->info()->strides_in_bytes()[2]));
330 _kernel.setArg<cl_uint>(idx++,
static_cast<unsigned int>(src1->info()->strides_in_bytes()[2]));
331 _kernel.setArg<cl_uint>(idx++,
static_cast<unsigned int>(dst->info()->strides_in_bytes()[2]));
virtual size_t num_dimensions() const =0
The number of dimensions of the tensor (rank)
Window calculate_max_window(const ValidRegion &valid_region, const Steps &steps, bool skip_border, BorderSize border_size)
const Window & window() const
The maximum window the kernel can be executed on.
bool dot8_supported(const cl::Device &device)
Helper function to check whether the cl_arm_integer_dot_product_int8 extension is supported...
ClGemmLowpMatrixMultiplyNativeKernel()
virtual size_t dimension(size_t index) const =0
Return the size of the requested dimension.
void enqueue(cl::CommandQueue &queue, ICLKernel &kernel, const Window &window, const cl::NDRange &lws_hint=CLKernelLibrary::get().default_ndrange(), bool use_dummy_work_items=false)
Add the kernel to the command queue with the given window.
const StringSet & options() const
Gets the current options list set.
cl::NDRange lws_hint() const
Return the Local-Workgroup-Size hint.
bool preferred_dummy_work_items_support(const cl::Device &device)
Helper function to check if "dummy work-items" are preferred to have a power of two NDRange In case d...
GEMM reshape information class.
std::string get_cl_dot8_acc_type_from_data_type(const DataType &dt)
Translates a tensor data type to the appropriate OpenCL dot8 accumulator type.
#define ARM_COMPUTE_RETURN_ON_ERROR(status)
Checks if a status contains an error and returns it.
std::string to_string(T &&value)
Convert integer and float values to string.
virtual DataType data_type() const =0
Data type used for each element of the tensor.
TensorShape compute_mm_shape(const ITensorInfo &input0, const ITensorInfo &input1, bool is_interleaved_transposed, const GEMMReshapeInfo &reshape_info)
Calculate the matrix multiplication output shape of two tensors.
#define ARM_COMPUTE_ERROR_ON(cond)
If the condition is true then an error message is printed and an exception thrown.
static CLKernelLibrary & get()
Access the KernelLibrary singleton.
GEMM LHS (Left Hand Side) matrix information.
Store the tensor's metadata.
#define ARM_COMPUTE_ERROR_THROW_ON(status)
Describe one of the image's dimensions with a start, end and step.
Manages all the OpenCL kernels compilation and caching, provides accessors for the OpenCL Context...
Status validate_arguments(const ITensorInfo *src, const ITensorInfo *weights, const ITensorInfo *dst, const PadStrideInfo &conv_info)
#define ARM_COMPUTE_RETURN_ERROR_ON(cond)
If the condition is true, an error is returned.
Copyright (c) 2017-2023 Arm Limited.
#define ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(...)
1 channel, 1 S32 per channel
void add_option(std::string option)
Adds option to the existing build option list.
int n() const
Number of matrix B columns.
const ITensor * get_const_tensor(int id) const
Get constant tensor of a given id.
unsigned int k0
Number of partial accumulations performed by the matrix multiplication.
std::string upper_string(const std::string &val)
Raise a given string to upper case.
cl::Kernel create_kernel(const CLCompileContext &ctx, const std::string &kernel_name, const std::set< std::string > &build_opts=std::set< std::string >())
Creates an opencl kernel using a compile context.
static constexpr size_t DimX
Alias for dimension 0 also known as X dimension.
bool update_window_and_padding(Window &win, Ts &&... patterns)
Update window and padding size for each of the access patterns.
#define ARM_COMPUTE_UNUSED(...)
To avoid unused variables warnings.
GEMM RHS (Right Hand Side) matrix information.
auto ceil_to_multiple(S value, T divisor) -> decltype(((value+divisor - 1)/divisor) *divisor)
Computes the smallest number larger or equal to value that is a multiple of divisor.
unsigned int n0
Number of columns processed by the matrix multiplication.
quantized, asymmetric fixed-point 8-bit number unsigned
void configure(const CLCompileContext &compile_context, const ITensorInfo *src0, ITensorInfo *src1, ITensorInfo *dst, const GEMMLHSMatrixInfo &lhs_info, const GEMMRHSMatrixInfo &rhs_info, const GEMMReshapeInfo &gemm_info)
Initialise the kernel's input and dst.
std::string get_cl_type_from_data_type(const DataType &dt)
Translates a tensor data type to the appropriate OpenCL type.
bool auto_init_if_empty(ITensorInfo &info, const TensorShape &shape, int num_channels, DataType data_type, QuantizationInfo quantization_info=QuantizationInfo())
Auto initialize the tensor info (shape, number of channels and data type) if the current assignment i...
virtual std::unique_ptr< T > clone() const =0
Provide a clone of the current object of class T.
void run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue) override
Enqueue the OpenCL kernel to process the given window on the passed OpenCL command queue...
int k() const
Number of matrix A columns or matrix B rows.
void add_option_if(bool cond, std::string option)
Adds option if a given condition is true;.
void set(size_t dimension, const Dimension &dim)
Set the values of a given dimension.
static constexpr unsigned int num_arguments_per_2D_tensor()
Returns the number of arguments enqueued per 2D tensor object.
bool slide_window_slice_3D(Window &slice) const
Slide the passed 3D window slice.
#define ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(k)
bool has_padding_changed(const std::unordered_map< const ITensorInfo *, PaddingSize > &padding_map)
Check if the previously stored padding info has changed after configuring a kernel.
quantized, symmetric fixed-point 8-bit number
quantized, symmetric per channel fixed-point 8-bit number
static constexpr size_t DimY
Alias for dimension 1 also known as Y dimension.
void add_2D_tensor_argument(unsigned int &idx, const ICLTensor *tensor, const Window &window)
Add the passed 2D tensor's parameters to the object's kernel's arguments starting from the index idx...
std::pair< Status, Window > validate_and_configure_window(ITensorInfo *src, ITensorInfo *dst)
ITensor * get_tensor(int id)
Get tensor of a given id from the pac.
#define ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(...)
#define ARM_COMPUTE_CREATE_ERROR(error_code, msg)
Creates an error with a given message.
int m() const
Number of matrix A rows.
static Status validate(const ITensorInfo *src0, const ITensorInfo *src1, const ITensorInfo *dst, const GEMMLHSMatrixInfo &lhs_info, const GEMMRHSMatrixInfo &rhs_info, const GEMMReshapeInfo &gemm_info)
Static function to check if given info will lead to a valid configuration.
#define ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(...)
#define ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(t, c,...)
std::unordered_map< const ITensorInfo *, PaddingSize > get_padding_info(std::initializer_list< const ITensorInfo *> infos)
Stores padding information before configuring a kernel.
Wrapper to configure the Khronos OpenCL C++ header.
int depth_output_gemm3d() const
Depth (third dimension) of the output tensor to be used with the GEMM3D kernel.
#define ARM_COMPUTE_RETURN_ERROR_ON_MSG(cond, msg)
If the condition is true, an error is returned.
#define ARM_COMPUTE_ERROR_ON_NULLPTR(...)
unsigned int k0
Number of partial accumulations performed by the matrix multiplication.
unsigned int m0
Number of rows processed by the matrix multiplication.
quantized, asymmetric fixed-point 8-bit number signed
Window first_slice_window_3D() const
First 3D slice of the window.
bool reinterpret_input_as_3d() const
Flag which specifies if the input tensor has to be reinterpreted as 3D.
Describe a multidimensional execution window.
#define ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(f, s)
SimpleTensor< T > slice(const SimpleTensor< T > &src, Coordinates starts, Coordinates ends)