You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/learning-paths/servers-and-cloud-computing/gh-runners/compare-performance.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ In this section, you will change the PyTorch backend being used to test the trai
14
14
15
15
In the previous section, you used the PyTorch 2.3.0 Docker Image compiled with OpenBLAS from DockerHub to run your testing workflow. PyTorch can be run with other backends. You will now modify the testing workflow to use PyTorch 2.3.0 Docker Image compiled with OneDNN and the Arm Compute Library.
16
16
17
-
The [Arm Compute Library](https://github.com/ARM-software/ComputeLibrary) is a collection of low-level machine learning functions optimized for Arm's Cortex-A and Neoverse processors and Mali GPUs. Arm-hosted GitHub runners use Arm Neoverse CPUs, which make it possible to optimize your neural networks to take advantage of processor features. ACL implements kernels (also known as operators or layers), using specific instructions that run faster on AArch64.
17
+
The [Arm Compute Library](https://github.com/ARM-software/ComputeLibrary) is a collection of low-level machine learning functions optimized for Arm's Cortex-A and Neoverse processors and Mali GPUs. Arm-hosted GitHub runners use Arm Neoverse CPUs, which make it possible to optimize your neural networks to take advantage of processor features. ACL implements kernels, which are also known as operators or layers, using specific instructions that run faster on AArch64.
18
18
19
19
ACL is integrated into PyTorch through [oneDNN](https://github.com/oneapi-src/oneDNN), an open-source deep neural network library.
20
20
@@ -43,11 +43,11 @@ jobs:
43
43
44
44
### Run the test workflow
45
45
46
-
Trigger the **Test Model** job again by clicking the `Run workflow` button on the `Actions` tab.
46
+
Trigger the **Test Model** job again by clicking the **Run workflow** button on the **Actions** tab.
47
47
48
48
The test workflow starts running.
49
49
50
-
Navigate to the workflow run on the `Actions` tab, click into the job, and expand the **Run testing script** step.
50
+
Navigate to the workflow run on the **Actions** tab, click into the job, and expand the **Run testing script** step.
51
51
52
52
You see a change in the performance results with OneDNN and ACL kernels being used.
0 commit comments