Skip to content

Commit ada16ee

Browse files
Merge pull request #2623 from ArmDeveloperEcosystem/main
Production update
2 parents cb3abb4 + d3dc5f5 commit ada16ee

File tree

66 files changed

+2354
-391
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+2354
-391
lines changed

.wordlist.txt

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5261,4 +5261,31 @@ tcmalloc
52615261
tlsv
52625262
vLLM's
52635263
webp
5264-
HugeTLB
5264+
HugeTLB
5265+
CIS
5266+
CRDs
5267+
ClusterIP
5268+
CoreDNS
5269+
DskipTests
5270+
Gtilab
5271+
KinD
5272+
Kubeconfig
5273+
Kubelet
5274+
Loopback
5275+
NetworkPolicies
5276+
StandaloneSessionClusterEntrypoint
5277+
TaskManagerRunner
5278+
Textfield
5279+
aquasecurity
5280+
dumpsys
5281+
hiredis
5282+
jemalloc
5283+
kubeconfig
5284+
kubelet
5285+
leaderboards
5286+
loopback
5287+
menuconfig
5288+
oss
5289+
saas
5290+
todo
5291+
yq

content/install-guides/windows-perf-wpa-plugin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ wpa -addsearchdir %USERPROFILE%\Downloads\wpa-plugin-1.0.3
117117

118118
Set the `WPA_ADDITIONAL_SEARCH_DIRECTORIES` environment variable to the location of the `.dll` file.
119119

120-
##### Option 3: Copy the `.dll` file to the `CustomDataSources` directory next to the WPA executable.
120+
##### Option 3: Copy the DLL to the CustomDataSources directory next to the WPA executable.
121121

122122
The default location is:
123123
`C:\\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\CustomDataSources`

content/learning-paths/cross-platform/adler32/summary-10.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ The project includes:
4747

4848
### Implementations
4949

50-
#### 1. Simple Implementation (`adler32-simple.c`)
50+
#### 1. Simple Implementation
5151

52-
This is a straightforward C implementation following the standard Adler-32 algorithm definition. It processes the input data byte by byte, updating two 16-bit accumulators (`a` and `b`) modulo 65521 (the largest prime smaller than 2^16).
52+
The code in `adler32-simple.c` is a straightforward C implementation following the standard Adler-32 algorithm definition. It processes the input data byte by byte, updating two 16-bit accumulators (`a` and `b`) modulo 65521 (the largest prime smaller than 2^16).
5353

54-
#### 2. NEON-Optimized Implementation (`adler32-neon.c`)
54+
#### 2. NEON-Optimized Implementation
5555

56-
This implementation leverages ARM NEON SIMD (Single Instruction, Multiple Data) instructions to accelerate the checksum calculation. Key aspects include:
56+
The code in `adler32-neon.c` leverages ARM NEON SIMD (Single Instruction, Multiple Data) instructions to accelerate the checksum calculation. Key aspects include:
5757
* Processing data in blocks (16 bytes at a time).
5858
* Using NEON intrinsics (`vld1q_u8`, `vmovl_u8`, `vaddq_u16`, `vpaddlq_u16`, `vmulq_u16`, etc.) to perform parallel operations on data vectors.
5959
* Calculating the sums `S1` (sum of bytes) and `S2` (weighted sum) for each block using vector operations.
779 KB
Loading
448 KB
Loading
315 KB
Loading
564 KB
Loading
231 KB
Loading
217 KB
Loading
600 KB
Loading

0 commit comments

Comments
 (0)