You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @param[in] input Source tensor. Data types supported: F32.
54
+
* @param[out] output Destination tensor. Data types supported: F32. All but the lowest two dimensions must be the same size as in the input tensor, i.e. scaling is only performed within the XY-plane.
55
+
* @param[in] inner_border Top and right inner border sizes. These rows and columns will be filled with zero.
56
+
* @param[in] info Contains padding and stride information described in @ref PadStrideInfo.
/** Static function to check if given info will lead to a valid configuration of @ref CLDeconvolutionLayerUpsample
60
+
*
61
+
* @param[in] input Source tensor info. Data types supported: F32.
62
+
* @param[in] output Destination tensor info. Data types supported: F32. All but the lowest two dimensions must be the same size as in the input tensor, i.e. scaling is only performed within the XY-plane.
63
+
* @param[in] inner_border Top and right inner border sizes. These rows and columns will be filled with zero.
64
+
* @param[in] info Contains padding and stride information described in @ref PadStrideInfo.
Copy file name to clipboardExpand all lines: arm_compute/core/CL/kernels/CLGEMMLowpMatrixMultiplyKernel.h
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,16 @@ class CLGEMMLowpMatrixMultiplyKernel : public ICLKernel
61
61
* @param[in] is_interleaved_transposed (Optional) True if input0 and input1 have been reshaped respectively using @ref CLGEMMInterleave4x4Kernel and @ref CLGEMMTranspose1xWKernel
/** Static function to check if given info will lead to a valid configuration of @ref CLGEMMLowpMatrixMultiplyKernel
65
+
*
66
+
* @param[in] input0 Input tensor info containing the interleaved Matrix A. Data type supported: QASYMM8
67
+
* @param[in] input1 Input tensor info containing the transposed Matrix B. Data type supported: same as @p input0
68
+
* @param[in] output Output tensor info to store the result of matrix multiplication. Data type supported: S32
69
+
* @param[in] is_interleaved_transposed (Optional) True if input0 and input1 have been reshaped respectively using @ref CLGEMMInterleave4x4Kernel and @ref CLGEMMTranspose1xWKernel
0 commit comments