Skip to content

Commit 0b49dbd

Browse files
Editorial
1 parent 410844b commit 0b49dbd

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

content/learning-paths/servers-and-cloud-computing/gh-runners/compare-performance.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ In this section, you will change the PyTorch backend being used to test the trai
1414

1515
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.
1616

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.
1818

1919
ACL is integrated into PyTorch through [oneDNN](https://github.com/oneapi-src/oneDNN), an open-source deep neural network library.
2020

@@ -43,11 +43,11 @@ jobs:
4343

4444
### Run the test workflow
4545

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.
4747

4848
The test workflow starts running.
4949

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.
5151

5252
You see a change in the performance results with OneDNN and ACL kernels being used.
5353

content/learning-paths/servers-and-cloud-computing/gh-runners/workflows.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -135,23 +135,23 @@ The `test-model.yml` file needs to be edited to be able to use the saved model f
135135

136136
Complete the steps below to modify the testing workflow file:
137137

138-
1. Navigate to the `Actions` tab on your GitHub repository.
138+
1. Navigate to the **Actions** tab on your GitHub repository.
139139

140-
2. Click on `Train Model` on the left side of the page.
140+
2. Click on **Train Model** on the left side of the page.
141141

142-
3. Click on the completed `Train Model` workflow.
142+
3. Click on the completed **Train Model** workflow.
143143

144144
4. Copy the 11-digit ID number from the end of the URL in your browser address bar.
145145

146146
![#run-id](/images/run-id.png)
147147

148-
5. Navigate back to the `Code` tab and open the file `.github/workflows/test-model.yml`.
148+
5. Navigate back to the **Code** tab and open the file `.github/workflows/test-model.yml`.
149149

150150
6. Click the Edit button, represented by a pencil on the top right of the file contents.
151151

152152
7. Update the `run-id` parameter with the 11 digit ID number you copied.
153153

154-
8. Save the file by clicking the `Commit changes` button.
154+
8. Save the file by clicking the **Commit changes** button.
155155

156156

157157
#### Run the workflow file
@@ -160,7 +160,7 @@ You are now ready to run the **Test Model** workflow.
160160

161161
1. Navigate to the `Actions` tab and select the **Test Workflow** on the left side.
162162

163-
2. Click the `Run workflow` button to run the workflow on the main branch.
163+
2. Click the **Run workflow** button to run the workflow on the main branch.
164164

165165
![#run-workflow](images/run-workflow.png)
166166

@@ -170,7 +170,7 @@ Click on the workflow to view the output from each step.
170170

171171
![Actions_test](/images/actions_test.png)
172172

173-
Click on the "Run testing script" step to see the accuracy of the model and a table of the results from the PyTorch profiler.
173+
Click on the **Run testing script** step to see the accuracy of the model and a table of the results from the PyTorch profiler.
174174

175175
The output from is similar to:
176176

0 commit comments

Comments
 (0)