Skip to content

Commit c1a2969

Browse files
Merge pull request #702 from jasonrandrews/spelling
Spelling fixes
2 parents a6a6ad8 + 9f53f79 commit c1a2969

File tree

6 files changed

+32
-6
lines changed

6 files changed

+32
-6
lines changed

.wordlist.txt

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2006,4 +2006,30 @@ FFTs
20062006
fft
20072007
Linaro's
20082008
bytecode
2009-
MSC
2009+
MSC
2010+
vectorizable
2011+
autovectorizable
2012+
autovectorized
2013+
autovectorize
2014+
vectorizer
2015+
Reflowing
2016+
callee
2017+
inlining
2018+
Autovec
2019+
GGC
2020+
Schmitz
2021+
Vectorizers
2022+
accg
2023+
hpac
2024+
se
2025+
sem
2026+
ssa
2027+
umu
2028+
wchars
2029+
Kitwares
2030+
arduino
2031+
uv
2032+
uvmpw
2033+
libhugtlbfs
2034+
mcpu
2035+
NoLSE

content/learning-paths/cross-platform/loop-reflowing/autovectorization-on-arm-1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ int32_t dotprod(int32_t *A, int32_t *B, size_t N) {
160160
}
161161
```
162162
163-
Compile again ith `-O3`:
163+
Compile again with `-O3`:
164164
165165
```bash
166166
gcc -O3 -fno-inline dotprod.c -o dotprod

content/learning-paths/laptops-and-desktops/win_python/how-to-2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ layout: "learningpathall"
88
---
99

1010
## Objective
11-
In this section, you will use the NumPy package you installed previously to create a sample application. The application will use NumPy to perform fast Fourier transforms (FFTs) of the synthesized sine waves corrupted by the noise. The application will run the FFTs several times for the variable lengths of the input waves. The application will measure the code execution time and we canthen analyse the performance boost of the Python interpreter and NumPy package on Arm64.
11+
In this section, you will use the NumPy package you installed previously to create a sample application. The application will use NumPy to perform fast Fourier transforms (FFTs) of the synthesized sine waves corrupted by the noise. The application will run the FFTs several times for the variable lengths of the input waves. The application will measure the code execution time and we can then analyze the performance boost of the Python interpreter and NumPy package on Arm64.
1212

1313
You can find the complete code [here](https://github.com/dawidborycki/PythonOnWoA)
1414

content/learning-paths/microcontrollers/project-migration-cmsis-v6/troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ A similar error can come up for any software component. Here is an example using
5959
![Additional software components required](./middleware.png)
6060

6161
{{% notice Resolution %}}
62-
1. Contact the CMSIS-Pack vendor for your device/software component and ask for an updated version without the CMSIS-CORE version requirement. Alterntively, do the following:
62+
1. Contact the CMSIS-Pack vendor for your device/software component and ask for an updated version without the CMSIS-CORE version requirement. Alternatively, do the following:
6363
2. Edit the device's PDSC file and change for example:
6464
```xml
6565
<require Cclass="CMSIS" Cgroup="CORE" Cversion="5.6.0"/>

content/learning-paths/servers-and-cloud-computing/glibc-with-lse/compare_result.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ The output will look similar to:
5959
[SCAN], 99thPercentileLatency(us), 70143
6060
[SCAN], Return=OK, 1499804
6161
```
62-
The overall throughtput (operations/sec) is 6662.1275371047195 with No-LSE Glibc.
62+
The overall throughput (operations/sec) is 6662.1275371047195 with No-LSE Glibc.
6363

6464
## Result with LSE
6565
Launch MongoDB again, this time with Glibc with LSE and obtain benchmark result.

content/learning-paths/servers-and-cloud-computing/libhugetlbfs/libhugetlbfs_general.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ layout: "learningpathall"
77
## Introduction to libhugetlbfs
88
In Linux, hugepages provide larger memory blocks compared to the default page size. You can use libhugetlbfs to provide memory for application text, data, `malloc()`, and shared memory with hugepages.
99

10-
Larger memory pages benefit applications that use considerable amounts of memory which, in turn, may cause reduced performance due to a high number of TLB misses. By enabling libhugetlbfs, workloads with sizeable amounts of code, data, or heap sections may see significant performance improvement.
10+
Larger memory pages benefit applications that use considerable amounts of memory which, in turn, may cause reduced performance due to a high number of TLB misses. By enabling libhugetlbfs, workloads with sizable amounts of code, data, or heap sections may see significant performance improvement.
1111

1212
## Install Linux packages
1313

0 commit comments

Comments
 (0)