From 33f41fabd30fb444aaa0cf3e65b61794d498d151 Mon Sep 17 00:00:00 2001 From: Michele Di Giorgio Date: Tue, 9 Mar 2021 14:09:08 +0000 Subject: Fix trademarks throughout the codebase Resolves: COMPMID-4299 Change-Id: Ie6a52c1371b9a2a7b5bb4f019ecd5e70a2008567 Signed-off-by: Michele Di Giorgio Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5338 Reviewed-by: Georgios Pinitas Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins --- scripts/include_functions_kernels.py | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) (limited to 'scripts/include_functions_kernels.py') diff --git a/scripts/include_functions_kernels.py b/scripts/include_functions_kernels.py index 721855ee27..82b40f0e36 100644 --- a/scripts/include_functions_kernels.py +++ b/scripts/include_functions_kernels.py @@ -1,4 +1,27 @@ #!/usr/bin/env python +# -*- coding: utf-8 -*- + +# Copyright (c) 2017-2018, 2020-2021 Arm Limited. +# +# SPDX-License-Identifier: MIT +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. import glob import collections import os @@ -9,7 +32,7 @@ src_path ="src" Target = collections.namedtuple('Target', 'name prefix basepath') core_targets = [ - Target("NEON", "NE", src_path), # Neon kernels are under src + Target("NEON", "NE", src_path), # Arm® Neon™ kernels are under src Target("CL", "CL", src_path), # CL kernels are under src Target("CPP", "CPP", armcv_path) # CPP kernels are under arm_compute ] -- cgit v1.2.1