Skip to content

Commit 1e391a5

Browse files
updates
1 parent 3210617 commit 1e391a5

File tree

1 file changed

+4
-4
lines changed
  • content/learning-paths/cross-platform/adler32

1 file changed

+4
-4
lines changed

content/learning-paths/cross-platform/adler32/neon-7.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ weight: 7
66
layout: learningpathall
77
---
88

9-
## How can I create a NEON version of Adler32 to improve performance?
9+
## How Can I Create a NEON Version of Adler32 To Improve Performance?
1010

1111
Writing NEON intrinsics is an advanced programming topic which requires time and effort to learn and apply. GitHub Copilot is a good way to get started with NEON, both to write new code and to debug issues during development.
1212

13-
You can instruct Github Copilot to create a NEON version of Adler32 using the prompt below.
13+
You can instruct Github Copilot to create a NEON-optimized version of Adler32 using the prompt below:
1414

1515
```console
1616
Add a second implementation of adler32 that processes data in blocks and uses Arm NEON intrinsics to improve performance.
@@ -553,6 +553,6 @@ Now that I've created the NEON implementation and updated the test code and Make
553553
554554
```
555555

556-
GitHub Copilot generated a new implementation of Adler32 using NEON intrinsics. It also updated the test program and the Makefile to make it easy to compare the two versions.
556+
GitHub Copilot generated a NEON-optimized implementation of Adler32, along with updates to the test program and Makefile. These changes make it easy to compare the performance of both versions.
557557

558-
Continue to the next section to compile and run the NEON version and investigate performance.
558+
Continue to the next section to compile and run the NEON version, and to compare its performance against the original implementation.

0 commit comments

Comments
 (0)