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 --- src/core/NEON/kernels/NEWinogradConvolutionLayerKernel.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/core/NEON/kernels/NEWinogradConvolutionLayerKernel.h') diff --git a/src/core/NEON/kernels/NEWinogradConvolutionLayerKernel.h b/src/core/NEON/kernels/NEWinogradConvolutionLayerKernel.h index 3583735482..75d257de4b 100644 --- a/src/core/NEON/kernels/NEWinogradConvolutionLayerKernel.h +++ b/src/core/NEON/kernels/NEWinogradConvolutionLayerKernel.h @@ -35,7 +35,7 @@ namespace arm_compute // Forward declarations class ITensor; -/** Interface for the Neon kernel to perform Winograd input transform. */ +/** Interface for the kernel to perform Winograd input transform. */ class INEWinogradLayerTransformInputKernel : public INEKernel { public: @@ -96,7 +96,7 @@ public: } }; -/** Neon kernel to perform Winograd input transform. */ +/** Kernel to perform Winograd input transform. */ template class NEWinogradLayerTransformInputKernel : public INEWinogradLayerTransformInputKernel { @@ -227,7 +227,7 @@ private: ITensor *_workspace; }; -/** Interface for the Neon kernel to perform Winograd output transform. */ +/** Interface for the kernel to perform Winograd output transform. */ class INEWinogradLayerTransformOutputKernel : public INEKernel { public: @@ -310,7 +310,7 @@ public: } }; -/** Neon kernel to perform Winograd output transform. */ +/** Kernel to perform Winograd output transform. */ template class NEWinogradLayerTransformOutputKernel : public INEWinogradLayerTransformOutputKernel { @@ -437,7 +437,7 @@ private: int _num_channels; }; -/** Interface for the Neon kernel to perform Winograd weights transform. */ +/** Interface for the kernel to perform Winograd weights transform. */ class INEWinogradLayerTransformWeightsKernel : public INEKernel { public: @@ -495,7 +495,7 @@ public: static Status validate(const ITensorInfo *input, const ITensorInfo *weights); }; -/** Neon kernel to perform Winograd weights transform. */ +/** Kernel to perform Winograd weights transform. */ template class NEWinogradLayerTransformWeightsKernel final : public INEWinogradLayerTransformWeightsKernel { @@ -577,7 +577,7 @@ private: int _num_input_channels; }; -/** Neon kernel to perform Winograd. */ +/** Kernel to perform Winograd. */ template class NEWinogradLayerConfiguration { -- cgit v1.2.1