From 3fdfee764382ff3ac2985afae059cdb2a08b654f Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Fri, 28 Feb 2020 15:40:44 +0000 Subject: IVGCVSW-4525 Adding TPIP comments to source Signed-off-by: Jan Eilers Change-Id: I4cd521f01172889966e64d03cdf899a355bd39d3 --- ArmnnPreparedModel_1_2.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ArmnnPreparedModel_1_2.cpp b/ArmnnPreparedModel_1_2.cpp index 29aaa1e0..84ff6e24 100644 --- a/ArmnnPreparedModel_1_2.cpp +++ b/ArmnnPreparedModel_1_2.cpp @@ -2,6 +2,9 @@ // Copyright © 2017 Arm Ltd. All rights reserved. // SPDX-License-Identifier: MIT // +// Note: the ArmnnBurstExecutorWithCache in this file is based on Android code +// under the Apache 2.0 license. See comment below for details. +// #define LOG_TAG "ArmnnDriver" @@ -393,6 +396,10 @@ Return ArmnnPreparedModel_1_2::executeSynchronously(const Requ return Void(); } +/// This class is strongly inspired by the default implementation in Android named DefaultBurstExecutorWithCache. +/// The original code is licensed under Apache-2.0 and can be found at the following link: +/// https://android.googlesource.com/platform/frameworks/ +/// ml/+/refs/tags/android-10.0.0_r20/nn/common/ExecutionBurstServer.cpp class ArmnnBurstExecutorWithCache : public ExecutionBurstServer::IBurstExecutorWithCache { public: ArmnnBurstExecutorWithCache(IPreparedModel* preparedModel) -- cgit v1.2.1