Add DataTypes supported by BinaryLogicalOp CL Kernel (#4012)
authorPrasanna R/SNAP /SRI-Bangalore/Engineer/삼성전자 <prasanna.r@samsung.com>
Fri, 14 Dec 2018 01:13:54 +0000 (06:43 +0530)
committer오형석/동작제어Lab(SR)/Staff Engineer/삼성전자 <hseok82.oh@samsung.com>
Fri, 14 Dec 2018 01:13:54 +0000 (10:13 +0900)
This patch adds DataType supported by BinaryLogicalOp CL Kernel

Signed-off-by: prasannar <prasanna.r@samsung.com>
libs/ARMComputeEx/src/core/CL/cl_kernels/binary_logical_op.cl

index 5ca2e2e..b33d22b 100644 (file)
@@ -23,7 +23,7 @@
  * @attention Data type can be passed using the -DDATA_TYPE_IN compile flag, e.g. -DDATA_TYPE_IN=uchar
  * @attention Vector size should be given as a preprocessor argument using -DVEC_SIZE=size. e.g. -DVEC_SIZE=16
  *
- * @param[in]  input1_ptr                            Pointer to the source tensor.
+ * @param[in]  input1_ptr                            Pointer to the source tensor. Supported data types: QASYMM8
  * @param[in]  input1_stride_x                       Stride of the source tensor in X dimension (in bytes)
  * @param[in]  input1_step_x                         input1_stride_x * number of elements along X processed per workitem(in bytes)
  * @param[in]  input1_stride_y                       Stride of the source tensor in Y dimension (in bytes)
@@ -32,7 +32,7 @@
  * @param[in]  input1_step_z                         input1_stride_z * number of elements along Z processed per workitem(in bytes)
  * @param[in]  input1_offset_first_element_in_bytes  The offset of the first element in the source tensor
  *
- * @param[in]  input2_ptr                            Pointer to the source tensor.
+ * @param[in]  input2_ptr                            Pointer to the source tensor.Supported data types: QASYMM8
  * @param[in]  input2_stride_x                       Stride of the source tensor in X dimension (in bytes)
  * @param[in]  input2_step_x                         input2_stride_x * number of elements along X processed per workitem(in bytes)
  * @param[in]  input2_stride_y                       Stride of the source tensor in Y dimension (in bytes)
@@ -41,7 +41,7 @@
  * @param[in]  input2_step_z                         input2_stride_z * number of elements along Z processed per workitem(in bytes)
  * @param[in]  input2_offset_first_element_in_bytes  The offset of the first element in the source tensor
  *
- * @param[out] output_ptr                           Pointer to the destination tensor.
+ * @param[out] output_ptr                           Pointer to the destination tensor. Supported data types: QASYMM8
  * @param[in]  output_stride_x                      Stride of the destination tensor in X dimension (in bytes)
  * @param[in]  output_step_x                        output_stride_x * number of elements along X processed per workitem(in bytes)
  * @param[in]  output_stride_y                      Stride of the destination tensor in Y dimension (in bytes)