Compute Library
 23.11
ClIm2ColKernel Class Reference

Interface for the im2col reshape kernel. More...

#include <ClIm2ColKernel.h>

Collaboration diagram for ClIm2ColKernel:
[legend]

Public Member Functions

 ClIm2ColKernel ()
 Default constructor. More...
 
 ARM_COMPUTE_DISALLOW_COPY_ALLOW_MOVE (ClIm2ColKernel)
 
void configure (const ClCompileContext &compile_context, ITensorInfo *src, ITensorInfo *dst, const Size2D &kernel_dims, const PadStrideInfo &conv_info, bool has_bias, const Size2D &dilation=Size2D(1U, 1U), unsigned int num_groups=1)
 Set the input and output of the kernel. More...
 
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. More...
 
- Public Member Functions inherited from ICLKernel
 ICLKernel ()
 Constructor. More...
 
cl::Kernel & kernel ()
 Returns a reference to the OpenCL kernel of this object. More...
 
CLKernelType type () const
 Returns the CL kernel type. More...
 
template<typename T >
void add_1D_array_argument (unsigned int &idx, const ICLArray< T > *array, const Strides &strides, unsigned int num_dimensions, const Window &window)
 Add the passed 1D array's parameters to the object's kernel's arguments starting from the index idx. More...
 
void add_1D_tensor_argument (unsigned int &idx, const ICLTensor *tensor, const Window &window)
 Add the passed 1D tensor's parameters to the object's kernel's arguments starting from the index idx. More...
 
void add_1D_tensor_argument_if (bool cond, unsigned int &idx, const ICLTensor *tensor, const Window &window)
 Add the passed 1D tensor's parameters to the object's kernel's arguments starting from the index idx if the condition is true. More...
 
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. More...
 
void add_2D_tensor_argument_if (bool cond, 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 if the condition is true. More...
 
void add_3D_tensor_argument (unsigned int &idx, const ICLTensor *tensor, const Window &window)
 Add the passed 3D tensor's parameters to the object's kernel's arguments starting from the index idx. More...
 
void add_4D_tensor_argument (unsigned int &idx, const ICLTensor *tensor, const Window &window)
 Add the passed 4D tensor's parameters to the object's kernel's arguments starting from the index idx. More...
 
void add_5D_tensor_argument (unsigned int &idx, const ICLTensor *tensor, const Window &window)
 Add the passed 5D tensor's parameters to the object's kernel's arguments starting from the index idx. More...
 
void add_3d_tensor_nhw_argument (unsigned int &idx, const ICLTensor *tensor)
 Add the passed NHW 3D tensor's parameters to the object's kernel's arguments by passing strides, dimensions and the offset to the first valid element in bytes. More...
 
void add_4d_tensor_nhwc_argument (unsigned int &idx, const ICLTensor *tensor)
 Add the passed NHWC 4D tensor's parameters to the object's kernel's arguments by passing strides, dimensions and the offset to the first valid element in bytes. More...
 
virtual void run (const Window &window, cl::CommandQueue &queue)
 Enqueue the OpenCL kernel to process the given window on the passed OpenCL command queue. More...
 
template<typename T >
void add_argument (unsigned int &idx, T value)
 Add the passed parameters to the object's kernel's arguments starting from the index idx. More...
 
void set_lws_hint (const cl::NDRange &lws_hint)
 Set the Local-Workgroup-Size hint. More...
 
cl::NDRange lws_hint () const
 Return the Local-Workgroup-Size hint. More...
 
void set_wbsm_hint (const cl_int &wbsm_hint)
 Set the workgroup batch size modifier hint. More...
 
cl_int wbsm_hint () const
 Return the workgroup batch size modifier hint. More...
 
const std::string & config_id () const
 Get the configuration ID. More...
 
void set_target (GPUTarget target)
 Set the targeted GPU architecture. More...
 
void set_target (cl::Device &device)
 Set the targeted GPU architecture according to the CL device. More...
 
GPUTarget get_target () const
 Get the targeted GPU architecture. More...
 
size_t get_max_workgroup_size ()
 Get the maximum workgroup size for the device the CLKernelLibrary uses. More...
 
cl::NDRange get_cached_gws () const
 Get the cached gws used to enqueue this kernel. More...
 
void cache_gws (const cl::NDRange &gws)
 Cache the latest gws used to enqueue this kernel. More...
 
template<unsigned int dimension_size>
void add_tensor_argument (unsigned &idx, const ICLTensor *tensor, const Window &window)
 
template<typename T , unsigned int dimension_size>
void add_array_argument (unsigned &idx, const ICLArray< T > *array, const Strides &strides, unsigned int num_dimensions, const Window &window)
 Add the passed array's parameters to the object's kernel's arguments starting from the index idx. More...
 
- Public Member Functions inherited from IKernel
 IKernel ()
 Constructor. More...
 
virtual ~IKernel ()=default
 Destructor. More...
 
virtual bool is_parallelisable () const
 Indicates whether or not the kernel is parallelisable. More...
 
virtual BorderSize border_size () const
 The size of the border for that kernel. More...
 
const Windowwindow () const
 The maximum window the kernel can be executed on. More...
 
bool is_window_configured () const
 Function to check if the embedded window of this kernel has been configured. More...
 

Static Public Member Functions

static Status validate (const ITensorInfo *input, const ITensorInfo *output, const Size2D &kernel_dims, const PadStrideInfo &conv_info, bool has_bias, const Size2D &dilation=Size2D(1U, 1U), unsigned int num_groups=1)
 Static function to check if given info will lead to a valid configuration. More...
 
- Static Public Member Functions inherited from ICLKernel
constexpr static unsigned int num_arguments_per_3d_tensor_nhw ()
 Returns the number of arguments enqueued per NHW 3D Tensor object. More...
 
constexpr static unsigned int num_arguments_per_4d_tensor_nhwc ()
 Returns the number of arguments enqueued per NHWC 4D Tensor object. More...
 
constexpr static unsigned int num_arguments_per_1D_array ()
 Returns the number of arguments enqueued per 1D array object. More...
 
constexpr static unsigned int num_arguments_per_1D_tensor ()
 Returns the number of arguments enqueued per 1D tensor object. More...
 
constexpr static unsigned int num_arguments_per_2D_tensor ()
 Returns the number of arguments enqueued per 2D tensor object. More...
 
constexpr static unsigned int num_arguments_per_3D_tensor ()
 Returns the number of arguments enqueued per 3D tensor object. More...
 
constexpr static unsigned int num_arguments_per_4D_tensor ()
 Returns the number of arguments enqueued per 4D tensor object. More...
 
static cl::NDRange gws_from_window (const Window &window, bool use_dummy_work_items)
 Get the global work size given an execution window. More...
 

Data Fields

DataLayout _data_layout
 
std::pair< unsigned int, unsigned int > _convolved_dims
 
unsigned int _num_elems_processed_per_iteration
 
Size2D _kernel_dims
 
PadStrideInfo _conv_info
 
unsigned int _num_groups
 

Detailed Description

Interface for the im2col reshape kernel.

Rearranges image blocks into columns. It is used to strip out each convolution block to a single column. It is used to transform a convolution to a plain matrix multiplication.

For example taking into account the image below and assuming 3x3 image blocks with stride of 1 we have:

\[ \left( \begin{array}{cccc} a00 & a01 & a02 & a03 \\ a10 & a11 & a12 & a13 \\ a20 & a21 & a22 & a23 \\ a30 & a31 & a32 & a33 \\ \end{array} \right) = \left( \begin{array}{ccccccccc} a00 & a01 & a02 & a10 & a11 & a12 & a20 & a21 & a22 \\ a01 & a02 & a03 & a11 & a12 & a13 & a21 & a22 & a23 \\ a10 & a11 & a12 & a20 & a21 & a22 & a30 & a31 & a32 \\ a11 & a12 & a13 & a21 & a22 & a23 & a31 & a32 & a33 \\ \end{array} \right) \]

Definition at line 62 of file ClIm2ColKernel.h.

Constructor & Destructor Documentation

◆ ClIm2ColKernel()

Default constructor.

Definition at line 323 of file ClIm2ColKernel.cpp.

325  _convolved_dims(),
327  _kernel_dims(),
328  _conv_info(),
329  _num_groups()
330 {
332 }

References arm_compute::ELEMENTWISE, and arm_compute::UNKNOWN.

Member Function Documentation

◆ ARM_COMPUTE_DISALLOW_COPY_ALLOW_MOVE()

ARM_COMPUTE_DISALLOW_COPY_ALLOW_MOVE ( ClIm2ColKernel  )

◆ configure()

void configure ( const ClCompileContext compile_context,
ITensorInfo src,
ITensorInfo dst,
const Size2D kernel_dims,
const PadStrideInfo conv_info,
bool  has_bias,
const Size2D dilation = Size2D(1U, 1U),
unsigned int  num_groups = 1 
)

Set the input and output of the kernel.

Parameters
[in]compile_contextThe compile context to be used.
[in]srcThe input tensor info to convert. 3 lower dimensions represent a single input [width, height, IFM], while every optional dimension from 4 and above represent a batch of inputs. Data types supported: QASYMM8/QASYMM8_SIGNED/F16/F32
[out]dstThe output tensor info. First 2 lower dimensions represent a transform of each 3D input, while every dimension above represents a batch. Data types supported: Same as input
[in]kernel_dimsThe kernel dimensions (width and height).
[in]conv_infoContains padding and stride information described in PadStrideInfo.
[in]has_biasIn case biases are provided expands the matrix with 1.
[in]dilation(Optional) Dilation, in elements, across x and y. Defaults to (1, 1).
[in]num_groups(Optional) Number of groups when performing a grouped convolution. num_groups != 1 is only supported for NCHW data layout

Definition at line 334 of file ClIm2ColKernel.cpp.

342 {
345 
346  auto padding_info = get_padding_info({src, dst});
347  _data_layout = src->data_layout();
348 
351  const unsigned int input_width = src->dimension(width_idx);
352  const unsigned int input_height = src->dimension(height_idx);
353 
354  // Select and configure the optimal OpenCL kernel to run.
355  // This function returns the OpenCL kernel's name, the arguments to pass at compile time, the number of elements processed per iteration
356  // and the padding requirement flag
357  Im2ColConfiguration im2col_config =
358  configure_opencl_kernel(src, kernel_dims, conv_info, has_bias, dilation, num_groups);
359 
360  // Create kernel
361  _kernel = create_kernel(compile_context, im2col_config.kernel_name, im2col_config.build_options);
362 
364  scaled_dimensions(input_width, input_height, kernel_dims.width, kernel_dims.height, conv_info, dilation);
365  _num_elems_processed_per_iteration = im2col_config.num_elems_processed_per_iteration;
366  _kernel_dims = kernel_dims; // Only needed by the Tuner
367  _conv_info = conv_info; // Only needed by the Tuner
369 
370  // Configure kernel window
371  auto win_config = validate_and_configure_window(src, dst, kernel_dims, conv_info, has_bias, dilation,
372  im2col_config.num_elems_processed_per_iteration,
373  im2col_config.is_padding_required_nchw, num_groups);
374  ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
375  IClKernel::configure_internal(win_config.second);
376 
377  // Set config_id for enabling LWS tuning
378  _config_id = im2col_config.kernel_name;
379  _config_id += "_";
380  _config_id += lower_string(string_from_data_type(src->data_type()));
381  _config_id += "_";
382  _config_id += support::cpp11::to_string(num_groups);
383  _config_id += "_";
384  _config_id += support::cpp11::to_string(dst->dimension(0));
385  _config_id += "_";
386  _config_id += support::cpp11::to_string(dst->dimension(1));
387  _config_id += "_";
389 
390  ARM_COMPUTE_ERROR_ON(src->data_layout() == DataLayout::NHWC && has_padding_changed(padding_info));
391 }

References ClIm2ColKernel::_conv_info, ClIm2ColKernel::_convolved_dims, ClIm2ColKernel::_data_layout, ClIm2ColKernel::_kernel_dims, ClIm2ColKernel::_num_elems_processed_per_iteration, ClIm2ColKernel::_num_groups, ARM_COMPUTE_ERROR_ON, ARM_COMPUTE_ERROR_ON_NULLPTR, ARM_COMPUTE_ERROR_THROW_ON, arm_compute::test::validation::conv_info, arm_compute::create_kernel(), arm_compute::test::validation::dst, arm_compute::get_data_layout_dimension_index(), arm_compute::get_padding_info(), arm_compute::test::validation::has_bias, arm_compute::has_padding_changed(), Size2D::height, arm_compute::HEIGHT, arm_compute::cpu::height_idx, arm_compute::lower_string(), arm_compute::NHWC, arm_compute::test::validation::num_groups, arm_compute::scaled_dimensions(), arm_compute::test::validation::src, arm_compute::string_from_data_layout(), arm_compute::string_from_data_type(), arm_compute::support::cpp11::to_string(), arm_compute::cpu::kernels::validate_and_configure_window(), arm_compute::cpu::kernels::validate_arguments(), Size2D::width, arm_compute::WIDTH, and arm_compute::cpu::width_idx.

◆ run_op()

void run_op ( ITensorPack tensors,
const Window window,
cl::CommandQueue &  queue 
)
overridevirtual

Enqueue the OpenCL kernel to process the given window on the passed OpenCL command queue.

Note
The queue is not flushed by this method, and therefore the kernel will not have been executed by the time this method returns.
Parameters
[in]tensorsA vector containing the tensors to operato on.
[in]windowRegion on which to execute the kernel. (Must be a valid region of the window returned by window()).
[in,out]queueCommand queue on which to enqueue the kernel.

Reimplemented from ICLKernel.

Definition at line 412 of file ClIm2ColKernel.cpp.

413 {
416  ARM_COMPUTE_ERROR_ON(tensors.empty());
417 
418  // Get initial windows
419  // Collapse in order to have (SRC_DEPTH * BATCH_SIZE) on the 3rd dimension
420  Window window_collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
421  window_collapsed.set_dimension_step(Window::DimZ, 1);
422 
423  auto src = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC));
424  auto dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
426 
427  Window window_output;
428  window_output.use_tensor_dimensions(dst->info()->tensor_shape());
429 
430  const Window first_slice_3d = window_collapsed.first_slice_window_3D();
431 
432  Window slice = first_slice_3d;
433  Window slice_in = first_slice_3d;
434  Window slice_out = window_output.first_slice_window_2D();
435 
437  {
438  const Window tmp_win = window.collapse_if_possible(ICLKernel::window(), 3);
439  const int num_batches = tmp_win[3].end();
440 
441  slice.set(1, Window::Dimension(0, static_cast<int>(dst->info()->tensor_shape()[1]), 1));
442  slice.set(2, Window::Dimension(0, static_cast<int>(num_batches), 1));
443  }
444  else
445  {
446  slice.set(0,
447  Window::Dimension(
450  slice.set(1, Window::Dimension(0, static_cast<int>(_convolved_dims.second), 1));
451  // Note: In case of NCHW the 3rd dimension is already set collapsing the input window
452  }
453 
454  // Setup input slice
455  // The dimensions of the input are increased within the OpenCL kernel
456  slice_in.set(Window::DimX, Window::Dimension(0, 0, 0));
457  slice_in.set(Window::DimY, Window::Dimension(0, 0, 0));
458  slice_in.set(Window::DimZ, Window::Dimension(0, 0, 0));
459 
460  // Setup output slice
461  // The dimensions of the output are increased within the OpenCL kernel
462  slice_out.set(Window::DimX, Window::Dimension(0, 0, 0));
463  slice_out.set(Window::DimY, Window::Dimension(0, 0, 0));
464 
465  unsigned int idx = num_arguments_per_3D_tensor() +
467  _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(src->info()->strides_in_bytes()[3]));
468  _kernel.setArg<cl_uint>(idx++,
469  static_cast<unsigned int>(dst->info()->strides_in_bytes()[((_num_groups == 1) ? 2 : 3)]));
470  do
471  {
472  unsigned int idx = 0;
473  add_3D_tensor_argument(idx, src, slice_in);
474  if (_num_groups == 1)
475  {
476  add_2D_tensor_argument(idx, dst, slice_out);
477  }
478  else
479  {
480  add_3D_tensor_argument(idx, dst, slice_out);
481  }
482  enqueue(queue, *this, slice, lws_hint());
483  } while (window_collapsed.slide_window_slice_3D(slice) && window_output.slide_window_slice_2D(slice_out) &&
484  window_collapsed.slide_window_slice_3D(slice_in));
485 }

References ClIm2ColKernel::_convolved_dims, ClIm2ColKernel::_data_layout, ClIm2ColKernel::_num_elems_processed_per_iteration, ClIm2ColKernel::_num_groups, arm_compute::ACL_DST, arm_compute::ACL_SRC, ICLKernel::add_2D_tensor_argument(), ICLKernel::add_3D_tensor_argument(), ARM_COMPUTE_ERROR_ON, ARM_COMPUTE_ERROR_ON_MISMATCHING_WINDOWS, ARM_COMPUTE_ERROR_ON_NULLPTR, ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL, arm_compute::ceil_to_multiple(), Window::collapse_if_possible(), Window::DimX, Window::DimY, Window::DimZ, arm_compute::test::validation::dst, ITensorPack::empty(), arm_compute::enqueue(), Window::first_slice_window_2D(), Window::first_slice_window_3D(), ITensorPack::get_const_tensor(), ITensorPack::get_tensor(), ICLKernel::lws_hint(), arm_compute::NHWC, ICLKernel::num_arguments_per_2D_tensor(), ICLKernel::num_arguments_per_3D_tensor(), Window::set(), Window::set_dimension_step(), arm_compute::test::validation::reference::slice(), Window::slide_window_slice_2D(), Window::slide_window_slice_3D(), arm_compute::test::validation::src, Window::use_tensor_dimensions(), and IKernel::window().

◆ validate()

Status validate ( const ITensorInfo input,
const ITensorInfo output,
const Size2D kernel_dims,
const PadStrideInfo conv_info,
bool  has_bias,
const Size2D dilation = Size2D(1U, 1U),
unsigned int  num_groups = 1 
)
static

Static function to check if given info will lead to a valid configuration.

Similar to ClIm2ColKernel::configure()

Returns
a status

Definition at line 393 of file ClIm2ColKernel.cpp.

400 {
402  Im2ColConfiguration im2col_config =
403  configure_opencl_kernel(src, kernel_dims, conv_info, has_bias, dilation, num_groups);
404  ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(src->clone().get(), dst->clone().get(), kernel_dims,
405  conv_info, has_bias, dilation,
406  im2col_config.num_elems_processed_per_iteration,
407  im2col_config.is_padding_required_nchw, num_groups)
408  .first);
409  return Status{};
410 }

References ARM_COMPUTE_RETURN_ON_ERROR, arm_compute::test::validation::conv_info, arm_compute::test::validation::dst, arm_compute::test::validation::has_bias, arm_compute::test::validation::num_groups, arm_compute::test::validation::src, arm_compute::cpu::kernels::validate_and_configure_window(), and arm_compute::cpu::kernels::validate_arguments().

Referenced by ClGemmConv2d::validate().

Field Documentation

◆ _conv_info

PadStrideInfo _conv_info

Definition at line 111 of file ClIm2ColKernel.h.

Referenced by ClIm2ColKernel::configure().

◆ _convolved_dims

std::pair<unsigned int, unsigned int> _convolved_dims

Definition at line 108 of file ClIm2ColKernel.h.

Referenced by ClIm2ColKernel::configure(), and ClIm2ColKernel::run_op().

◆ _data_layout

DataLayout _data_layout

Definition at line 107 of file ClIm2ColKernel.h.

Referenced by ClIm2ColKernel::configure(), and ClIm2ColKernel::run_op().

◆ _kernel_dims

Size2D _kernel_dims

Definition at line 110 of file ClIm2ColKernel.h.

Referenced by ClIm2ColKernel::configure().

◆ _num_elems_processed_per_iteration

unsigned int _num_elems_processed_per_iteration

Definition at line 109 of file ClIm2ColKernel.h.

Referenced by ClIm2ColKernel::configure(), and ClIm2ColKernel::run_op().

◆ _num_groups

unsigned int _num_groups

Definition at line 112 of file ClIm2ColKernel.h.

Referenced by ClIm2ColKernel::configure(), and ClIm2ColKernel::run_op().


The documentation for this class was generated from the following files:
arm_compute::support::cpp11::to_string
std::string to_string(T &&value)
Convert integer and float values to string.
Definition: StringSupport.h:168
arm_compute::opencl::kernels::ClIm2ColKernel::_conv_info
PadStrideInfo _conv_info
Definition: ClIm2ColKernel.h:111
arm_compute::test::validation::src
SimpleTensor< float > src
Definition: DFT.cpp:155
arm_compute::DataLayout::NHWC
@ NHWC
Num samples, height, width, channels.
arm_compute::test::validation::dst
auto dst
Definition: DFT.cpp:170
arm_compute::lower_string
std::string lower_string(const std::string &val)
Lower a given string.
Definition: StringUtils.cpp:38
arm_compute::cpu::kernels::validate_arguments
Status validate_arguments(const ITensorInfo *src, const ITensorInfo *weights, const ITensorInfo *dst, const PadStrideInfo &conv_info)
Definition: CpuDirectConv2dKernel.cpp:57
arm_compute::ICLKernel::num_arguments_per_2D_tensor
constexpr static unsigned int num_arguments_per_2D_tensor()
Returns the number of arguments enqueued per 2D tensor object.
Definition: ICLKernel.h:313
ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL
#define ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(k)
Definition: Validate.h:1079
arm_compute::Window::DimX
static constexpr size_t DimX
Alias for dimension 0 also known as X dimension.
Definition: Window.h:43
arm_compute::Window::collapse_if_possible
Window collapse_if_possible(const Window &full_window, size_t first, size_t last, bool *has_collapsed=nullptr) const
Collapse the dimensions between first and last if possible.
Definition: Window.inl:72
arm_compute::opencl::kernels::ClIm2ColKernel::_num_elems_processed_per_iteration
unsigned int _num_elems_processed_per_iteration
Definition: ClIm2ColKernel.h:109
arm_compute::scaled_dimensions
std::pair< unsigned int, unsigned int > scaled_dimensions(int width, int height, int kernel_width, int kernel_height, const PadStrideInfo &pad_stride_info, const Size2D &dilation=Size2D(1U, 1U))
Returns expected width and height of output scaled tensor depending on dimensions rounding mode.
Definition: Utils.cpp:288
arm_compute::opencl::kernels::ClIm2ColKernel::_kernel_dims
Size2D _kernel_dims
Definition: ClIm2ColKernel.h:110
arm_compute::string_from_data_type
const std::string & string_from_data_type(DataType dt)
Convert a data type identity into a string.
Definition: DataTypeUtils.cpp:31
arm_compute::opencl::kernels::ClIm2ColKernel::_num_groups
unsigned int _num_groups
Definition: ClIm2ColKernel.h:112
arm_compute::DataLayoutDimension::WIDTH
@ WIDTH
width
arm_compute::ICLKernel::add_2D_tensor_argument
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.
Definition: ICLKernel.h:210
ARM_COMPUTE_RETURN_ON_ERROR
#define ARM_COMPUTE_RETURN_ON_ERROR(status)
Checks if a status contains an error and returns it.
Definition: Error.h:205
arm_compute::opencl::kernels::ClIm2ColKernel::_convolved_dims
std::pair< unsigned int, unsigned int > _convolved_dims
Definition: ClIm2ColKernel.h:108
arm_compute::test::validation::has_bias
const bool has_bias
Definition: Im2Col.cpp:152
ARM_COMPUTE_ERROR_ON_NULLPTR
#define ARM_COMPUTE_ERROR_ON_NULLPTR(...)
Definition: Validate.h:159
arm_compute::Window::set_dimension_step
void set_dimension_step(size_t dimension, int step)
Set the step of a given dimension.
Definition: Window.inl:181
ARM_COMPUTE_ERROR_ON
#define ARM_COMPUTE_ERROR_ON(cond)
If the condition is true then an error message is printed and an exception thrown.
Definition: Error.h:466
ARM_COMPUTE_ERROR_THROW_ON
#define ARM_COMPUTE_ERROR_THROW_ON(status)
Definition: Error.h:455
arm_compute::DataLayoutDimension::HEIGHT
@ HEIGHT
height
arm_compute::ACL_DST
@ ACL_DST
Definition: Types.h:55
arm_compute::create_kernel
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.
Definition: CLHelpers.cpp:409
arm_compute::opencl::kernels::ClIm2ColKernel::_data_layout
DataLayout _data_layout
Definition: ClIm2ColKernel.h:107
arm_compute::cpu::kernels::validate_and_configure_window
std::pair< Status, Window > validate_and_configure_window(ITensorInfo *src, ITensorInfo *dst)
Definition: CpuDirectConv2dKernel.cpp:92
arm_compute::Window::DimY
static constexpr size_t DimY
Alias for dimension 1 also known as Y dimension.
Definition: Window.h:45
arm_compute::ceil_to_multiple
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.
Definition: Math.h:50
arm_compute::IKernel::window
const Window & window() const
The maximum window the kernel can be executed on.
Definition: IKernel.cpp:28
arm_compute::string_from_data_layout
const std::string & string_from_data_layout(DataLayout dl)
Convert a data layout identity into a string.
Definition: DataLayoutUtils.cpp:30
arm_compute::ICLKernel::add_3D_tensor_argument
void add_3D_tensor_argument(unsigned int &idx, const ICLTensor *tensor, const Window &window)
Add the passed 3D tensor's parameters to the object's kernel's arguments starting from the index idx.
Definition: ICLKernel.h:234
arm_compute::get_data_layout_dimension_index
size_t get_data_layout_dimension_index(const DataLayout &data_layout, const DataLayoutDimension &data_layout_dimension)
Get the index of the given dimension.
Definition: Helpers.inl:201
arm_compute::test::validation::num_groups
const unsigned int num_groups
Definition: Im2Col.cpp:153
arm_compute::ELEMENTWISE
@ ELEMENTWISE
Elementwise CL kernel type.
Definition: CLTypes.h:83
arm_compute::ICLKernel::num_arguments_per_3D_tensor
constexpr static unsigned int num_arguments_per_3D_tensor()
Returns the number of arguments enqueued per 3D tensor object.
Definition: ICLKernel.h:321
arm_compute::test::validation::conv_info
conv_info
Definition: DirectConvolutionLayer.cpp:547
arm_compute::has_padding_changed
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.
Definition: Utils.cpp:491
arm_compute::Window::DimZ
static constexpr size_t DimZ
Alias for dimension 2 also known as Z dimension.
Definition: Window.h:47
arm_compute::ICLKernel::lws_hint
cl::NDRange lws_hint() const
Return the Local-Workgroup-Size hint.
Definition: ICLKernel.h:383
arm_compute::DataLayout::UNKNOWN
@ UNKNOWN
Unknown data layout.
arm_compute::ACL_SRC
@ ACL_SRC
Definition: Types.h:44
arm_compute::cpu::width_idx
const size_t width_idx
Definition: impl.h:37
ARM_COMPUTE_ERROR_ON_MISMATCHING_WINDOWS
#define ARM_COMPUTE_ERROR_ON_MISMATCHING_WINDOWS(f, w)
Definition: Validate.h:181
arm_compute::get_padding_info
std::unordered_map< const ITensorInfo *, PaddingSize > get_padding_info(std::initializer_list< const ITensorInfo * > infos)
Stores padding information before configuring a kernel.
Definition: Utils.cpp:476
arm_compute::test::validation::reference::slice
SimpleTensor< T > slice(const SimpleTensor< T > &src, Coordinates starts, Coordinates ends)
Definition: SliceOperations.cpp:38
arm_compute::cpu::height_idx
const size_t height_idx
Definition: impl.h:38
arm_compute::enqueue
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.
Definition: ICLKernel.cpp:33