summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorConor Kennedy <conor.kennedy@arm.com>2023-02-13 10:50:40 +0000
committerConor Kennedy <conor.kennedy@arm.com>2023-02-13 15:47:33 +0000
commit5cf8e74e702e3d5278c898202cc25b04b812d87a (patch)
treed13ebf0a0a3bc7d7b8bce9dfdc8e77560bb92e71 /source
parent5b4fea129b2f738fc877916111908b955ad07d5a (diff)
downloadml-embedded-evaluation-kit-5cf8e74e702e3d5278c898202cc25b04b812d87a.tar.gz
MLECO-2709: Inclusive language update
* Update various files to use inclusive language Signed-off-by: Conor Kennedy <conor.kennedy@arm.com> Change-Id: I538f61a400e1d58acb6397bb5e2ba3d912196314
Diffstat (limited to 'source')
-rw-r--r--source/application/api/common/source/Classifier.cc4
-rw-r--r--source/application/api/use_case/asr/src/AsrClassifier.cc4
-rw-r--r--source/application/api/use_case/asr/src/Wav2LetterPostprocess.cc4
-rw-r--r--source/application/api/use_case/kws/src/KwsClassifier.cc4
-rw-r--r--source/hal/source/components/lcd/source/glcd_mps3/glcd_mps3.c4
-rw-r--r--source/hal/source/components/lcd/source/lcd_img.c4
-rw-r--r--source/hal/source/platform/mps3/source/smm_mps3.h10
-rw-r--r--source/math/include/PlatformMath.hpp4
8 files changed, 19 insertions, 19 deletions
diff --git a/source/application/api/common/source/Classifier.cc b/source/application/api/common/source/Classifier.cc
index 8a335f7..9b14ffd 100644
--- a/source/application/api/common/source/Classifier.cc
+++ b/source/application/api/common/source/Classifier.cc
@@ -1,5 +1,5 @@
/*
- * SPDX-FileCopyrightText: Copyright 2021-2022 Arm Limited and/or its affiliates <open-source-office@arm.com>
+ * SPDX-FileCopyrightText: Copyright 2021-2023 Arm Limited and/or its affiliates <open-source-office@arm.com>
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -91,7 +91,7 @@ namespace app {
totalOutputSize *= outputTensor->dims->data[inputDim];
}
- /* Sanity checks. */
+ /* Health check */
if (totalOutputSize < topNCount) {
printf_err("Output vector is smaller than %" PRIu32 "\n", topNCount);
return false;
diff --git a/source/application/api/use_case/asr/src/AsrClassifier.cc b/source/application/api/use_case/asr/src/AsrClassifier.cc
index a9ed678..3c9c32e 100644
--- a/source/application/api/use_case/asr/src/AsrClassifier.cc
+++ b/source/application/api/use_case/asr/src/AsrClassifier.cc
@@ -1,5 +1,5 @@
/*
- * SPDX-FileCopyrightText: Copyright 2021 Arm Limited and/or its affiliates <open-source-office@arm.com>
+ * SPDX-FileCopyrightText: Copyright 2021,2023 Arm Limited and/or its affiliates <open-source-office@arm.com>
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -89,7 +89,7 @@ namespace app {
constexpr uint32_t outColsIdx = Wav2LetterModel::ms_outputColsIdx;
- /* Sanity checks. */
+ /* Health checks. */
if (outputTensor == nullptr) {
printf_err("Output vector is null pointer.\n");
return false;
diff --git a/source/application/api/use_case/asr/src/Wav2LetterPostprocess.cc b/source/application/api/use_case/asr/src/Wav2LetterPostprocess.cc
index f74bda6..c2cc9fd 100644
--- a/source/application/api/use_case/asr/src/Wav2LetterPostprocess.cc
+++ b/source/application/api/use_case/asr/src/Wav2LetterPostprocess.cc
@@ -1,5 +1,5 @@
/*
- * SPDX-FileCopyrightText: Copyright 2021-2022 Arm Limited and/or its affiliates <open-source-office@arm.com>
+ * SPDX-FileCopyrightText: Copyright 2021-2023 Arm Limited and/or its affiliates <open-source-office@arm.com>
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -53,7 +53,7 @@ namespace app {
auto* ptrData = tflite::GetTensorData<uint8_t>(this->m_outputTensor);
const uint32_t elemSz = AsrPostProcess::GetTensorElementSize(this->m_outputTensor);
- /* Other sanity checks. */
+ /* Other health checks. */
if (0 == elemSz) {
printf_err("Tensor type not supported for post processing\n");
return false;
diff --git a/source/application/api/use_case/kws/src/KwsClassifier.cc b/source/application/api/use_case/kws/src/KwsClassifier.cc
index 420c6de..e498f06 100644
--- a/source/application/api/use_case/kws/src/KwsClassifier.cc
+++ b/source/application/api/use_case/kws/src/KwsClassifier.cc
@@ -1,5 +1,5 @@
/*
- * SPDX-FileCopyrightText: Copyright 2022 Arm Limited and/or its affiliates <open-source-office@arm.com>
+ * SPDX-FileCopyrightText: Copyright 2022-2023 Arm Limited and/or its affiliates <open-source-office@arm.com>
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -47,7 +47,7 @@ namespace app {
totalOutputSize *= outputTensor->dims->data[inputDim];
}
- /* Sanity checks. */
+ /* Health check */
if (totalOutputSize < topNCount) {
printf_err("Output vector is smaller than %" PRIu32 "\n", topNCount);
return false;
diff --git a/source/hal/source/components/lcd/source/glcd_mps3/glcd_mps3.c b/source/hal/source/components/lcd/source/glcd_mps3/glcd_mps3.c
index 1a10bad..cfbb386 100644
--- a/source/hal/source/components/lcd/source/glcd_mps3/glcd_mps3.c
+++ b/source/hal/source/components/lcd/source/glcd_mps3/glcd_mps3.c
@@ -1,5 +1,5 @@
/*
- * SPDX-FileCopyrightText: Copyright 2022 Arm Limited and/or its affiliates <open-source-office@arm.com>
+ * SPDX-FileCopyrightText: Copyright 2022-2023 Arm Limited and/or its affiliates <open-source-office@arm.com>
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -203,7 +203,7 @@ void GLCD_DrawChar(
{
unsigned int i, j, k, pixs;
- /* Sanity check: out of bounds? */
+ /* Heatlh check: out of bounds? */
if ((x + cw) > GLCD_WIDTH || (y + ch) > GLCD_HEIGHT) {
return;
}
diff --git a/source/hal/source/components/lcd/source/lcd_img.c b/source/hal/source/components/lcd/source/lcd_img.c
index d3ce260..752fe86 100644
--- a/source/hal/source/components/lcd/source/lcd_img.c
+++ b/source/hal/source/components/lcd/source/lcd_img.c
@@ -1,5 +1,5 @@
/*
- * SPDX-FileCopyrightText: Copyright 2022 Arm Limited and/or its affiliates <open-source-office@arm.com>
+ * SPDX-FileCopyrightText: Copyright 2022-2023 Arm Limited and/or its affiliates <open-source-office@arm.com>
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -41,7 +41,7 @@ int lcd_display_image(const uint8_t* data, const uint32_t width,
const uint32_t pos_x, const uint32_t pos_y,
const uint32_t downsample_factor)
{
- /* Sanity checks */
+ /* Health checks */
assert(data);
if ((pos_x + width/downsample_factor > GLCD_WIDTH) ||
(pos_y + height/downsample_factor > GLCD_HEIGHT)) {
diff --git a/source/hal/source/platform/mps3/source/smm_mps3.h b/source/hal/source/platform/mps3/source/smm_mps3.h
index e455975..8354c9c 100644
--- a/source/hal/source/platform/mps3/source/smm_mps3.h
+++ b/source/hal/source/platform/mps3/source/smm_mps3.h
@@ -1,5 +1,5 @@
/*
- * SPDX-FileCopyrightText: Copyright 2022 Arm Limited and/or its affiliates <open-source-office@arm.com>
+ * SPDX-FileCopyrightText: Copyright 2022-2023 Arm Limited and/or its affiliates <open-source-office@arm.com>
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -182,8 +182,8 @@ typedef struct
*/
__IO uint32_t CR1; /* Offset: 0x004 (R/W) Control register 1
* [31:4] : Reserved
- * [3] : Slave-mode output disable
- * [2] : Master or slave mode select
+ * [3] : Worker output disable
+ * [2] : Controller or worker mode select
* [1] : Synchronous serial port enable
* [0] : Loop back mode
*/
@@ -259,9 +259,9 @@ typedef struct
#define SSP_CR1_LBM_Msk (1UL<<SSP_CR1_LBM_Pos)
#define SSP_CR1_SSE_Pos 1 /* Serial port enable. */
#define SSP_CR1_SSE_Msk (1UL<<SSP_CR1_SSE_Pos)
-#define SSP_CR1_MS_Pos 2 /* Master or Slave mode. */
+#define SSP_CR1_MS_Pos 2 /* Controller or worker mode. */
#define SSP_CR1_MS_Msk (1UL<<SSP_CR1_MS_Pos)
-#define SSP_CR1_SOD_Pos 3 /* Slave Output mode Disable. */
+#define SSP_CR1_SOD_Pos 3 /* Secondary Output mode Disable. */
#define SSP_CR1_SOD_Msk (1UL<<SSP_CR1_SOD_Pos)
/* SSP_SR Status register. */
diff --git a/source/math/include/PlatformMath.hpp b/source/math/include/PlatformMath.hpp
index 26ebf37..ef02a22 100644
--- a/source/math/include/PlatformMath.hpp
+++ b/source/math/include/PlatformMath.hpp
@@ -1,5 +1,5 @@
/*
- * SPDX-FileCopyrightText: Copyright 2021-2022 Arm Limited and/or its affiliates <open-source-office@arm.com>
+ * SPDX-FileCopyrightText: Copyright 2021-2023 Arm Limited and/or its affiliates <open-source-office@arm.com>
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -150,7 +150,7 @@ namespace math {
* array.
* @param[in] srcLen Number of elements in the array/vector.
* @param[out] ptrDst Output buffer to be populated.
- * @param[in] dstLen Output buffer len (for sanity check only).
+ * @param[in] dstLen Output buffer len (for health check only).
* @return true if successful, false otherwise.
*/
static bool ComplexMagnitudeSquaredF32(float* ptrSrc,