aboutsummaryrefslogtreecommitdiff
path: root/examples
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 /examples
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 'examples')
-rw-r--r--examples/graph_resnext50.cpp2
-rw-r--r--examples/neon_copy_objects.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/graph_resnext50.cpp b/examples/graph_resnext50.cpp
index 97eb85ccd1..6378f6c741 100644
--- a/examples/graph_resnext50.cpp
+++ b/examples/graph_resnext50.cpp
@@ -192,7 +192,7 @@ private:
* Model is based on:
* https://arxiv.org/abs/1611.05431
* "Aggregated Residual Transformations for Deep Neural Networks"
- * Saining Xie, Ross Girshick, Piotr Dollar, Zhuowen Tu, Kaiming He
+ * Saining Xie, Ross Girshick, Piotr Dollar, Zhuowen Tu, Kaiming He.
*
* @note To list all the possible arguments execute the binary appended with the --help option
*
diff --git a/examples/neon_copy_objects.cpp b/examples/neon_copy_objects.cpp
index 3043709fe7..b060b09759 100644
--- a/examples/neon_copy_objects.cpp
+++ b/examples/neon_copy_objects.cpp
@@ -49,7 +49,7 @@ public:
src_data = new float[width * height * batch];
dst_data = new float[width * height * batch];
- // Fill src_data with dummy values:
+ // Fill src_data with pseudo(meaningless) values:
for(unsigned int b = 0; b < batch; b++)
{
for(unsigned int h = 0; h < height; h++)