Skip to content

Commit 4fd14f6

Browse files
Merge pull request #2016 from jasonrandrews/review
spelling updates
2 parents e2fb032 + 13d3450 commit 4fd14f6

File tree

5 files changed

+21
-10
lines changed

5 files changed

+21
-10
lines changed

.wordlist.txt

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4200,4 +4200,14 @@ multithreaded
42004200
Wix's
42014201
ngrok's
42024202
qs
4203-
qu
4203+
qu
4204+
Mbps
4205+
SVMATCH
4206+
abd
4207+
bitvector
4208+
bitvectors
4209+
iperf
4210+
normals
4211+
svcntb
4212+
svmatch
4213+
tc

content/learning-paths/servers-and-cloud-computing/_index.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ key_ip:
88
maintopic: true
99
operatingsystems_filter:
1010
- Android: 2
11-
- Linux: 143
11+
- Linux: 146
1212
- macOS: 10
1313
- Windows: 14
1414
pinned_modules:
@@ -23,7 +23,7 @@ subjects_filter:
2323
- Databases: 15
2424
- Libraries: 9
2525
- ML: 27
26-
- Performance and Architecture: 53
26+
- Performance and Architecture: 56
2727
- Storage: 1
2828
- Web: 10
2929
subtitle: Optimize cloud native apps on Arm for performance and cost
@@ -98,6 +98,7 @@ tools_software_languages_filter:
9898
- Hugging Face: 9
9999
- InnoDB: 1
100100
- Intrinsics: 1
101+
- iperf3: 1
101102
- Java: 3
102103
- JAX: 1
103104
- Kafka: 1
@@ -117,8 +118,8 @@ tools_software_languages_filter:
117118
- MongoDB: 2
118119
- mpi: 1
119120
- MySQL: 9
121+
- NEON: 4
120122
- Neon: 3
121-
- NEON: 2
122123
- Nexmark: 1
123124
- Nginx: 3
124125
- Node.js: 3
@@ -135,16 +136,16 @@ tools_software_languages_filter:
135136
- Redis: 3
136137
- Remote.It: 2
137138
- RME: 6
138-
- Runbook: 68
139+
- Runbook: 70
139140
- Rust: 2
140141
- snappy: 1
141142
- Snort3: 1
142143
- SQL: 7
143144
- Streamline CLI: 1
144145
- Streamlit: 2
145146
- Supervisor: 1
146-
- SVE: 4
147-
- SVE2: 1
147+
- SVE: 5
148+
- SVE2: 2
148149
- Sysbench: 1
149150
- Telemetry: 1
150151
- TensorFlow: 2

content/learning-paths/servers-and-cloud-computing/bitmap_scan_sve2/bitmap-scan-sve.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ double benchmark_scan(size_t (*scan_func)(bitvector_t*, uint32_t*),
363363
```
364364

365365
## Main Function
366-
The main function of your program is reposible for setting up the test environment, running the benchmarking code for the four different implementations across various bit densities, and reporting the results. In the context of bitmap scanning, bit density refers to the percentage or proportion of bits that are set (have a value of 1) in the bitmap. Copy the main function code below into `bitvector_scan_benchmark.c`:
366+
The main function of your program is responsible for setting up the test environment, running the benchmarking code for the four different implementations across various bit densities, and reporting the results. In the context of bitmap scanning, bit density refers to the percentage or proportion of bits that are set (have a value of 1) in the bitmap. Copy the main function code below into `bitvector_scan_benchmark.c`:
367367

368368
```C
369369
int main() {

content/learning-paths/servers-and-cloud-computing/microbenchmark-network-iperf3/basic-microbenchmarking.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ rcv_tcp_congestion cubic
6969
iperf Done.
7070
```
7171

72-
- The`Cwnd` column prints the control window size and corresponds to the allowed number of TCP transactions inflight before receiving an acknowledgment `ACK` from the server. This adjusts dynamically to not overwhelm the receiver and adjust for variable link connection strengths.
72+
- The`Cwnd` column prints the control window size and corresponds to the allowed number of TCP transactions in flight before receiving an acknowledgment `ACK` from the server. This adjusts dynamically to not overwhelm the receiver and adjust for variable link connection strengths.
7373

7474
- The `CPU Utilization` row shows both the usage on the sender and receiver. If you are migrating your workload to a different platform, such as from x86 to Arm, there may be variations.
7575

content/learning-paths/servers-and-cloud-computing/microbenchmark-network-iperf3/tuning.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Test Complete. Summary Results:
3737

3838
On the server, your can configure Linux kernel runtime parameters with the `sysctl` command.
3939

40-
There are a plenthora of values to tune that relate to performance and security. The following command can be used to list all available options. The [Linux kernel documentation](https://docs.kernel.org/networking/ip-sysctl.html#ip-sysctl) provides a more detailed description of each parameter.
40+
There are a plethora of values to tune that relate to performance and security. The following command can be used to list all available options. The [Linux kernel documentation](https://docs.kernel.org/networking/ip-sysctl.html#ip-sysctl) provides a more detailed description of each parameter.
4141

4242
```bash
4343
sysctl -a | grep tcp

0 commit comments

Comments
 (0)