From ac6499a474503dfcf587d95b85823aeb5861103f Mon Sep 17 00:00:00 2001 From: Sheri Zhang Date: Wed, 10 Feb 2021 15:32:38 +0000 Subject: Comply with Trademark rules for use of Neon, Arm and Mali Full trademarks available in README.md Resolves: COMPMID-4257 Signed-off-by: Sheri Zhang Change-Id: Ibfba2adf2eef3449433f467464ebd87d7198474d Signed-off-by: Michele Di Giorgio Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5116 Reviewed-by: Georgios Pinitas Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins --- arm_compute/graph/TypePrinter.h | 2 +- arm_compute/graph/Types.h | 2 +- arm_compute/graph/Utils.h | 4 ++-- arm_compute/graph/backends/NEON/NEDeviceBackend.h | 6 +++--- arm_compute/graph/backends/NEON/NEFunctionFactory.h | 4 ++-- arm_compute/graph/backends/NEON/NESubTensorHandle.h | 4 ++-- arm_compute/graph/backends/NEON/NETensorHandle.h | 4 ++-- 7 files changed, 13 insertions(+), 13 deletions(-) (limited to 'arm_compute/graph') diff --git a/arm_compute/graph/TypePrinter.h b/arm_compute/graph/TypePrinter.h index 1037c80157..3f529a9814 100644 --- a/arm_compute/graph/TypePrinter.h +++ b/arm_compute/graph/TypePrinter.h @@ -43,7 +43,7 @@ inline ::std::ostream &operator<<(::std::ostream &os, const Target &target) os << "UNSPECIFIED"; break; case Target::NEON: - os << "NEON"; + os << "Neon"; break; case Target::CL: os << "CL"; diff --git a/arm_compute/graph/Types.h b/arm_compute/graph/Types.h index d1c71f815b..77e91b205a 100644 --- a/arm_compute/graph/Types.h +++ b/arm_compute/graph/Types.h @@ -94,7 +94,7 @@ struct GraphConfig enum class Target { UNSPECIFIED, /**< Unspecified Target */ - NEON, /**< NEON capable target device */ + NEON, /**< Neon capable target device */ CL, /**< OpenCL capable target device */ GC, /**< GLES compute capable target device */ }; diff --git a/arm_compute/graph/Utils.h b/arm_compute/graph/Utils.h index b1be51ee30..e32ac29f35 100644 --- a/arm_compute/graph/Utils.h +++ b/arm_compute/graph/Utils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020 Arm Limited. + * Copyright (c) 2018-2021 Arm Limited. * * SPDX-License-Identifier: MIT * @@ -76,7 +76,7 @@ bool is_target_supported(Target target); /** Returns default target for execution * * @note If an OpenCL backend exists then OpenCL is returned, - * else if the NEON backend exists returns NEON as target. + * else if the Neon backend exists returns Neon as target. * If no backends are registered an error is raised. * * @return Default target diff --git a/arm_compute/graph/backends/NEON/NEDeviceBackend.h b/arm_compute/graph/backends/NEON/NEDeviceBackend.h index d0c8c27203..01d2be010a 100644 --- a/arm_compute/graph/backends/NEON/NEDeviceBackend.h +++ b/arm_compute/graph/backends/NEON/NEDeviceBackend.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2019 Arm Limited. + * Copyright (c) 2018-2021 Arm Limited. * * SPDX-License-Identifier: MIT * @@ -34,7 +34,7 @@ namespace graph { namespace backends { -/** NEON device backend */ +/** Neon device backend */ class NEDeviceBackend final : public IDeviceBackend { public: @@ -54,7 +54,7 @@ public: std::shared_ptr create_weights_manager() override; private: - Allocator _allocator; /**< NEON backend allocator */ + Allocator _allocator; /**< Neon backend allocator */ }; } // namespace backends } // namespace graph diff --git a/arm_compute/graph/backends/NEON/NEFunctionFactory.h b/arm_compute/graph/backends/NEON/NEFunctionFactory.h index 5d0e175fb0..4dd1f1f5ca 100644 --- a/arm_compute/graph/backends/NEON/NEFunctionFactory.h +++ b/arm_compute/graph/backends/NEON/NEFunctionFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2019 Arm Limited. + * Copyright (c) 2018-2021 Arm Limited. * * SPDX-License-Identifier: MIT * @@ -38,7 +38,7 @@ class GraphContext; namespace backends { -/** Factory for generating NEON backend functions **/ +/** Factory for generating Neon backend functions **/ class NEFunctionFactory final { public: diff --git a/arm_compute/graph/backends/NEON/NESubTensorHandle.h b/arm_compute/graph/backends/NEON/NESubTensorHandle.h index 259be7822c..534f1c4e06 100644 --- a/arm_compute/graph/backends/NEON/NESubTensorHandle.h +++ b/arm_compute/graph/backends/NEON/NESubTensorHandle.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2019 Arm Limited. + * Copyright (c) 2018-2021 Arm Limited. * * SPDX-License-Identifier: MIT * @@ -34,7 +34,7 @@ namespace graph { namespace backends { -/** NEON Sub-Tensor handle interface object **/ +/** Neon Sub-Tensor handle interface object **/ class NESubTensorHandle final : public ITensorHandle { public: diff --git a/arm_compute/graph/backends/NEON/NETensorHandle.h b/arm_compute/graph/backends/NEON/NETensorHandle.h index 86aba302a5..211990fe6c 100644 --- a/arm_compute/graph/backends/NEON/NETensorHandle.h +++ b/arm_compute/graph/backends/NEON/NETensorHandle.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2019 Arm Limited. + * Copyright (c) 2018-2021 Arm Limited. * * SPDX-License-Identifier: MIT * @@ -34,7 +34,7 @@ namespace graph { namespace backends { -/** NEON Tensor handle interface object **/ +/** Neon Tensor handle interface object **/ class NETensorHandle final : public ITensorHandle { public: -- cgit v1.2.1