aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorramelg01 <ramy.elgammal@arm.com>2021-12-23 08:32:08 +0000
committerRamy Elgammal <ramy.elgammal@arm.com>2021-12-24 11:30:11 +0000
commitb2eba7f307d5ae634ff41bd88d5bd1659466d82d (patch)
treed8fad5cae925f2c2320eb16970029125d6461c56 /src
parentdc85d78e3ac138f62319d805f59b6c6f06e64837 (diff)
downloadComputeLibrary-b2eba7f307d5ae634ff41bd88d5bd1659466d82d.tar.gz
Replacing non-inclusive terms with proper terms
Partially-Resolves: COMPMID-4854 Signed-off-by: Ramy Elgammal <ramy.elgammal@arm.com> Change-Id: Ic9757c89878b9b5a89680b5344de657f676c7bf2 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/6859 Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Gunes Bayir <gunes.bayir@arm.com>
Diffstat (limited to 'src')
-rw-r--r--src/common/cpuinfo/CpuModel.h4
-rw-r--r--src/core/CL/OpenCL.cpp2
-rw-r--r--src/core/NEON/kernels/arm_gemm/gemm_implementation.hpp2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/common/cpuinfo/CpuModel.h b/src/common/cpuinfo/CpuModel.h
index 4bd294e326..4fe6c29e53 100644
--- a/src/common/cpuinfo/CpuModel.h
+++ b/src/common/cpuinfo/CpuModel.h
@@ -55,7 +55,7 @@ CpuModel midr_to_model(uint32_t midr);
*
* @note This is used in case of old kernel configurations where some capabilities are not exposed.
*
- * @param[in] model Model to check for whitelisted capabilities
+ * @param[in] model Model to check for allowlisted capabilities
*/
bool model_supports_fp16(CpuModel model);
@@ -63,7 +63,7 @@ bool model_supports_fp16(CpuModel model);
*
* @note This is used in case of old kernel configurations where some capabilities are not exposed.
*
- * @param[in] model Model to check for whitelisted capabilities
+ * @param[in] model Model to check for allowlisted capabilities
*/
bool model_supports_dot(CpuModel model);
} // namespace cpuinfo
diff --git a/src/core/CL/OpenCL.cpp b/src/core/CL/OpenCL.cpp
index d8c2736ef7..d5034ba8fa 100644
--- a/src/core/CL/OpenCL.cpp
+++ b/src/core/CL/OpenCL.cpp
@@ -163,7 +163,7 @@ bool opencl_is_available()
// hold their state, we call a harmless OpenCL function (clGetPlatformIDs
// with invalid parameters must result in CL_INVALID_VALUE) to ensure the
// runtimes have a chance to initialize their static objects first. Thanks
- // to C++11 rules about normal program termination (cf [basic.start]), this
+ // to C++11 rules about normal program completion (cf [basic.start]), this
// ensures their static objects are destroyed last, i.e. after the
// singleton CLScheduler is destroyed.
//
diff --git a/src/core/NEON/kernels/arm_gemm/gemm_implementation.hpp b/src/core/NEON/kernels/arm_gemm/gemm_implementation.hpp
index d3857a50e7..809946f100 100644
--- a/src/core/NEON/kernels/arm_gemm/gemm_implementation.hpp
+++ b/src/core/NEON/kernels/arm_gemm/gemm_implementation.hpp
@@ -144,7 +144,7 @@ struct GemmImplementation<Top, Tret, Nothing> {
/* "Master" function implemented for each valid combination of types.
* Returns a list of GEMM implementation descriptors for processing by the
- * other functions, terminated by an implementation with
+ * other functions, ended by an implementation with
* method==GemmMethod::DEFAULT. */
template<typename Top, typename Tret, class OutputStage = Nothing>
const GemmImplementation<Top, Tret, OutputStage> *gemm_implementation_list();