aboutsummaryrefslogtreecommitdiff
path: root/src/gpu/cl/operators/ClTransposedConvolution.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/cl/operators/ClTransposedConvolution.h')
-rw-r--r--src/gpu/cl/operators/ClTransposedConvolution.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gpu/cl/operators/ClTransposedConvolution.h b/src/gpu/cl/operators/ClTransposedConvolution.h
index bc04387df5..58ebc689ed 100644
--- a/src/gpu/cl/operators/ClTransposedConvolution.h
+++ b/src/gpu/cl/operators/ClTransposedConvolution.h
@@ -57,11 +57,11 @@ public:
*
* @param[in] compile_context The compile context to be used.
* @param[in] input Input tensor info with dimensions [IFM, width, height, batch]
- * Data types supported: F16/F32.
+ * Data types supported: F16/F32/QASYMM8/QASYMM8_SIGNED.
* @param[in] weights Weight tensor info with dimensions [IFM, width, height, OFM].
* Data type supported: Same as @p input
* @param[in] biases (Optional) Biases tensor info. Biases are 1D tensor with dimension [OFM].
- * Data type supported: Should match @p input data type
+ * Data type supported: Should match @p input data type if floating point, otherwise S32.
* @param[out] output Output tensor info with dimensions [OFM, width, height, batch]
* The 1st dimension must be equal to the 4th dimension of the @p weights tensor.
* Data types supported: Same as @p input.