Skip to content

Commit 5d9c6e0

Browse files
authored
Update 2-ml-ext-for-vulkan.md
1 parent 86f6e6e commit 5d9c6e0

1 file changed

Lines changed: 11 additions & 4 deletions

File tree

content/learning-paths/mobile-graphics-and-gaming/vulkan-ml-sample/2-ml-ext-for-vulkan.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,16 @@ This setup involves two main steps:
1919

2020
Before building and running the samples, ensure the following tools are installed on your development machine:
2121

22-
- CMake (version 3.12 or later)
22+
- CMake (version 3.25 or later)
2323
- Python 3
2424
- Git
2525

26+
Git can be installed with the following command:
27+
28+
```bash
29+
winget install --id Git.Git -e
30+
```
31+
2632
In VSCode create a new folder for this project then make sure you have the following extensions:
2733
* C/C++ From Microsoft
2834
* CMake Tools From Microsoft
@@ -35,7 +41,7 @@ In VSCode create a new folder for this project then make sure you have the follo
3541
Create a Venv in Python (3.13 was used in the creation of this Guide) and run the following commands
3642

3743
```bash
38-
py -3.13 -m venv .venv
44+
py -m venv .venv
3945
.\.venv\Scripts\Activate.ps1
4046
python -m pip install --upgrade pip
4147
python -m pip install ai-ml-emulation-layer-for-vulkan cmake
@@ -45,8 +51,9 @@ To verify your installation, run the following commands:
4551

4652
```bash
4753
cmake --version
48-
python3 --version
54+
python --version
4955
git --version
56+
python -m pip show ai-ml-emulation-layer-for-vulkan
5057
```
5158

5259
Each command should print the installed version of the tool.
@@ -71,7 +78,7 @@ Under the **Vulkan Layers Available** tab, add the path to your `Emulation layer
7178

7279
![VL available](images/vl-availble.png)
7380

74-
Under the **Vulkan layers Configuration** tabgo through each setting in the top rigt except disable all Vulkan Layers and enable the Graph and Tensor Emulation
81+
Under the **Vulkan layers Configuration** tab go through each setting in the top rigt except disable all Vulkan Layers and enable the Graph and Tensor Emulation
7582

7683
Ensure that the **Graph** layer is listed above the **Tensor** layer.
7784

0 commit comments

Comments
 (0)