Skip to content

Commit d1b28a1

Browse files
Final tweaks
1 parent e0319b1 commit d1b28a1

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

content/learning-paths/laptops-and-desktops/win_on_arm_build_onnxruntime/2-build-onnxruntime.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ To build the ONNX Runtime shared library, use one of the following configuration
5454
```
5555

5656

57-
### Resulting Dynamic Link Library
58-
When the build is complete, you'll find the `onnxruntime.dll` dynamic linked library in the following respective directories:
57+
### Resulting Dynamically Linked Library
58+
When the build is complete, you'll find the `onnxruntime.dll` dynamically linked library in the following respective directories:
5959

6060
* For **Release** build:
6161

content/learning-paths/laptops-and-desktops/win_on_arm_build_onnxruntime/3-build-onnxruntime-generate-api.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The Generate() API in ONNX Runtime is designed for text generation tasks using m
1818
You can learn more about this area by reading the [ONNX Runtime Generate() API documentation](https://onnxruntime.ai/docs/genai/).
1919
{{% /notice %}}
2020

21-
In this section, you'll build the Generate API() from source.
21+
In this section, you'll build the Generate() API from source.
2222

2323

2424
### Clone the onnxruntime-genai repository
@@ -37,7 +37,7 @@ You might be able to use later commits. These steps have been tested with the co
3737
{{% /notice %}}
3838

3939
### Build for Windows on Arm
40-
The build script uses a ---config argument, which supports the following options:
40+
The build script uses a --config argument, which supports the following options:
4141
- ```Release``` builds release build.
4242
- ```Debug``` builds binaries with debug symbols.
4343
- ```RelWithDebInfo``` builds release binaries with debug info.
@@ -51,7 +51,7 @@ python build.py --config Release --skip_tests
5151

5252
### Verify the output
5353

54-
When the build is complete, confirm the ONNX Runtime Generate() API Dynamic Link Library has been created:
54+
When the build is complete, confirm the ONNX Runtime Generate() API Dynamically Linked Library has been created:
5555

5656
```output
5757
dir build\Windows\Release\Release\onnxruntime-genai.dll

content/learning-paths/laptops-and-desktops/win_on_arm_build_onnxruntime/4-run-benchmark-on-WoA.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ This command downloads the model into a folder named `cpu_and_mobile`.
5454

5555
### Build the Model Runner (ONNX Runtime GenAI C Example)
5656

57-
In the previous step, you built the ONNX Runtime Generate() API from source. Now, copy over the resulting headers and dynamic linked libraries into the appropriate folders (``lib`` and ``include``).
57+
In the previous step, you built the ONNX Runtime Generate() API from source. Now, copy over the resulting headers and Dynamically Linked Libraries into the appropriate folders (``lib`` and ``include``).
5858

5959
Building from source is a better practice because the examples usually are updated to run with the latest changes:
6060

content/learning-paths/laptops-and-desktops/win_on_arm_build_onnxruntime/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ further_reading:
3636
link: https://onnxruntime.ai/docs/
3737
type: documentation
3838
- resource:
39-
title: ONNX Runtime generate() API
39+
title: ONNX Runtime Generate() API
4040
link: https://onnxruntime.ai/docs/genai/
4141
type: documentation
4242
- resource:

0 commit comments

Comments
 (0)