From 1d359279e22874121def2ce4bfdb633d94ea5ade Mon Sep 17 00:00:00 2001 From: Sheri Zhang Date: Thu, 10 Jun 2021 13:56:11 +0100 Subject: Add in-place computation for elementwise operations - Add in-place computation for elementwise operations at graph level - Modify support case to test in-place computation for elementwise operations Resolves: COMPMID-4414 Signed-off-by: Sheri Zhang Change-Id: I5a4de1235dd29a31160e770a16d62f4b98c84ae6 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5803 Comments-Addressed: Arm Jenkins Reviewed-by: Michele Di Giorgio Reviewed-by: SiCong Li Tested-by: Arm Jenkins --- arm_compute/graph/Types.h | 1 + 1 file changed, 1 insertion(+) (limited to 'arm_compute/graph') diff --git a/arm_compute/graph/Types.h b/arm_compute/graph/Types.h index 7306b82a1e..63a9433fe6 100644 --- a/arm_compute/graph/Types.h +++ b/arm_compute/graph/Types.h @@ -112,6 +112,7 @@ enum class EltwiseOperation Mul, /**< Arithmetic multiplication */ Max, /**< Arithmetic maximum */ Div, /**< Arithmetic division */ + Min, /**< Arithmetic minimum */ }; /** Supported Unary Element-wise operations */ -- cgit v1.2.1