aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/CL/kernels/CLRangeKernel.h
diff options
context:
space:
mode:
authorManuel Bottini <manuel.bottini@arm.com>2018-12-28 15:05:20 +0000
committerManuel Bottini <manuel.bottini@arm.com>2019-01-14 13:53:18 +0000
commit053e7510f24c2b02f9fae9c45fb6b874631a5376 (patch)
tree2da0a155512637017fb011a11f8c2f8bab494fa2 /arm_compute/core/CL/kernels/CLRangeKernel.h
parentb412fab0e3c8ec10e104f4d85760898a5b26179c (diff)
downloadComputeLibrary-053e7510f24c2b02f9fae9c45fb6b874631a5376.tar.gz
COMPMID-1758: NEON: Implement Range
Change-Id: I56dff9462b85760fbed6db43224cadb90d283810 Reviewed-on: https://review.mlplatform.org/472 Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'arm_compute/core/CL/kernels/CLRangeKernel.h')
-rw-r--r--arm_compute/core/CL/kernels/CLRangeKernel.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/arm_compute/core/CL/kernels/CLRangeKernel.h b/arm_compute/core/CL/kernels/CLRangeKernel.h
index 2da21175ce..2349b8ecad 100644
--- a/arm_compute/core/CL/kernels/CLRangeKernel.h
+++ b/arm_compute/core/CL/kernels/CLRangeKernel.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018 ARM Limited.
+ * Copyright (c) 2018-2019 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -31,7 +31,7 @@ namespace arm_compute
{
class ICLTensor;
-/** Kernel class for Range()
+/** Kernel class for Range
*
* range generates a 1-D tensor containing a sequence of numbers that begins at 'start' and extends by increments
* of 'step' up to but not including 'end'.
@@ -51,7 +51,7 @@ public:
CLRangeKernel &operator=(CLRangeKernel &&) = default;
/** Default destructor */
~CLRangeKernel() = default;
- /** Initialise the kernel's output tensor, start, end and step of the sequence.
+ /** Initialize the kernel's output tensor, start, end and step of the sequence.
*
* @param[out] output Output tensor. Data types supported: U8/S8/QASYMM8/U16/S16/U32/S32/F16/F32.
* @param[in] start The starting value of the sequence.