COMPMID-1376: Add support for QASYMM8 in CLDeconvolutionLayer

Change-Id: I13ec79b6668e2b9559d3fa789ae0b51ab6975289
Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/139126
Reviewed-by: Michalis Spyrou <michalis.spyrou@arm.com>
Tested-by: Jenkins <bsgcomp@arm.com>
diff --git a/arm_compute/runtime/CL/functions/CLDeconvolutionLayerUpsample.h b/arm_compute/runtime/CL/functions/CLDeconvolutionLayerUpsample.h
index 74ee4ef..d2f8a78 100644
--- a/arm_compute/runtime/CL/functions/CLDeconvolutionLayerUpsample.h
+++ b/arm_compute/runtime/CL/functions/CLDeconvolutionLayerUpsample.h
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017, 2018 ARM Limited.
+ * Copyright (c) 2017-2018 ARM Limited.
  *
  * SPDX-License-Identifier: MIT
  *
@@ -55,8 +55,8 @@
 
     /** Initialize the function's source, destination, interpolation type and border_mode.
      *
-     * @param[in, out] input        Source tensor. Data type supported: F32.
-     * @param[out]     output       Destination tensor. Data type supported: F32.
+     * @param[in, out] input        Source tensor. Data type supported: QASYMM8/F16/F32.
+     * @param[out]     output       Destination tensor. Data type supported: same as @p input.
      * @param[in]      inner_border The number of zeros added to right and top edges of the input.
      * @param[in]      info         Contains padding and policies to be used in the deconvolution.
      */
@@ -64,8 +64,8 @@
                    const PadStrideInfo &info);
     /** Static function to check if given info will lead to a valid configuration of @ref CLDeconvolutionLayerUpsample
      *
-     * @param[in] input        Source tensor info. Data type supported: F32.
-     * @param[in] output       Destination tensor info. Data type supported: F32.
+     * @param[in] input        Source tensor info. Data type supported: QASYMM8/F16/F32.
+     * @param[in] output       Destination tensor info. Data type supported: same as @p input.
      * @param[in] inner_border The number of zeros added to right and top edges of the input.
      * @param[in] info         Contains padding and policies to be used in the deconvolution.
      *