From 95f8089c63fbeab67bfe57b2232adbdccc7932c3 Mon Sep 17 00:00:00 2001 From: Sheri Zhang Date: Mon, 16 Mar 2020 14:31:53 +0000 Subject: COMPMID-3273: Add support for QASYMM8_SIGNED in CPPDetectionPostProcessLayer Signed-off-by: Sheri Zhang Change-Id: I8dad529892caf7389efb311e810c8a80ca3d03c2 Signed-off-by: Sheri Zhang Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/2888 Comments-Addressed: Arm Jenkins Reviewed-by: Gian Marco Iodice Tested-by: Arm Jenkins --- arm_compute/runtime/CPP/functions/CPPDetectionPostProcessLayer.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'arm_compute/runtime/CPP/functions/CPPDetectionPostProcessLayer.h') 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. -- cgit v1.2.1