aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/CPP/functions/CPPDetectionPostProcessLayer.h
diff options
context:
space:
mode:
authorSheri Zhang <sheri.zhang@arm.com>2020-03-16 14:31:53 +0000
committerSheri Zhang <sheri.zhang@arm.com>2020-03-19 13:31:07 +0000
commit95f8089c63fbeab67bfe57b2232adbdccc7932c3 (patch)
tree10eedf0f63a6423d746e5cf318e8a64b5c717ffe /arm_compute/runtime/CPP/functions/CPPDetectionPostProcessLayer.h
parentfd7780d910f3bc4c85bc95b57ea3dd4375d95d41 (diff)
downloadComputeLibrary-95f8089c63fbeab67bfe57b2232adbdccc7932c3.tar.gz
COMPMID-3273: Add support for QASYMM8_SIGNED in CPPDetectionPostProcessLayer
Signed-off-by: Sheri Zhang <sheri.zhang@arm.com> Change-Id: I8dad529892caf7389efb311e810c8a80ca3d03c2 Signed-off-by: Sheri Zhang <sheri.zhang@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/2888 Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Gian Marco Iodice <gianmarco.iodice@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'arm_compute/runtime/CPP/functions/CPPDetectionPostProcessLayer.h')
-rw-r--r--arm_compute/runtime/CPP/functions/CPPDetectionPostProcessLayer.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/arm_compute/runtime/CPP/functions/CPPDetectionPostProcessLayer.h b/arm_compute/runtime/CPP/functions/CPPDetectionPostProcessLayer.h
index 44ebf9d7f2..cb74ca9077 100644
--- a/arm_compute/runtime/CPP/functions/CPPDetectionPostProcessLayer.h
+++ b/arm_compute/runtime/CPP/functions/CPPDetectionPostProcessLayer.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2019 ARM Limited.
+ * Copyright (c) 2019-2020 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -54,7 +54,7 @@ public:
CPPDetectionPostProcessLayer &operator=(const CPPDetectionPostProcessLayer &) = delete;
/** Configure the detection output layer CPP function
*
- * @param[in] input_box_encoding The bounding box input tensor. Data types supported: F32, QASYMM8.
+ * @param[in] input_box_encoding The bounding box input tensor. Data types supported: F32/QASYMM8/QASYMM8_SIGNED.
* @param[in] input_score The class prediction input tensor. Data types supported: Same as @p input_box_encoding.
* @param[in] input_anchors The anchors input tensor. Data types supported: Same as @p input_box_encoding.
* @param[out] output_boxes The boxes output tensor. Data types supported: F32.
@@ -69,8 +69,8 @@ public:
ITensor *output_boxes, ITensor *output_classes, ITensor *output_scores, ITensor *num_detection, DetectionPostProcessLayerInfo info = DetectionPostProcessLayerInfo());
/** Static function to check if given info will lead to a valid configuration of @ref CPPDetectionPostProcessLayer
*
- * @param[in] input_box_encoding The bounding box input tensor info. Data types supported: F32, QASYMM8.
- * @param[in] input_class_score The class prediction input tensor info. Data types supported: F32, QASYMM8.
+ * @param[in] input_box_encoding The bounding box input tensor info. Data types supported: F32/QASYMM8/QASYMM8_SIGNED.
+ * @param[in] input_class_score The class prediction input tensor info. Data types supported: Same as @p input_box_encoding.
* @param[in] input_anchors The anchors input tensor. Data types supported: F32, QASYMM8.
* @param[out] output_boxes The output tensor. Data types supported: F32.
* @param[out] output_classes The output tensor. Data types supported: Same as @p output_boxes.