From fa79fda2c797282de3589aaa69b06e065e8a21e0 Mon Sep 17 00:00:00 2001 From: Mohammed Suhail Munshi Date: Tue, 20 Sep 2022 11:49:23 +0100 Subject: =?UTF-8?q?Optimize=20Neon=E2=84=A2=20Logistic=20Activation=20-=20?= =?UTF-8?q?Use=20a=201d=20execution=20window=20to=20improve=20memory=20acc?= =?UTF-8?q?ess=20pattern.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Resolves: [COMPMID-5465] Signed-off-by: Mohammed Suhail Munshi Change-Id: Ida30669ffa06eb002ca43a6edf15e25a6eaad2f6 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/8344 Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins Reviewed-by: Gunes Bayir Benchmark: Arm Jenkins --- src/cpu/operators/CpuActivation.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/cpu/operators/CpuActivation.h') diff --git a/src/cpu/operators/CpuActivation.h b/src/cpu/operators/CpuActivation.h index 9b97c9d24f..f1807d5e47 100644 --- a/src/cpu/operators/CpuActivation.h +++ b/src/cpu/operators/CpuActivation.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021 Arm Limited. + * Copyright (c) 2021-2022 Arm Limited. * * SPDX-License-Identifier: MIT * @@ -48,6 +48,9 @@ public: * @return a status */ static Status validate(const ITensorInfo *input, const ITensorInfo *output, const ActivationLayerInfo &act_info); + + // Inherited methods overridden: + void run(ITensorPack &tensors) override; }; } // namespace cpu } // namespace arm_compute -- cgit v1.2.1