Skip to content

Commit bf84c2f

Browse files
committed
Update OpenVINO ExecutionProvider documentation version 1
1 parent fb0d684 commit bf84c2f

File tree

2 files changed

+109
-91
lines changed

2 files changed

+109
-91
lines changed

docs/build/eps.md

Lines changed: 12 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -291,19 +291,20 @@ See more information on the OpenVINO™ Execution Provider [here](../execution-p
291291
### Prerequisites
292292
{: .no_toc }
293293

294-
1. Install the OpenVINO™ offline/online installer from Intel<sup>®</sup> Distribution of OpenVINO™<sup>TM</sup> Toolkit **Release 2024.3** for the appropriate OS and target hardware:
294+
1. Install the OpenVINO™ offline/online installer from Intel<sup>®</sup> Distribution of OpenVINO™<sup>TM</sup> Toolkit **Release 2025.3** for the appropriate OS and target hardware:
295295
* [Windows - CPU, GPU, NPU](https://www.intel.com/content/www/us/en/developer/tools/openvino-toolkit/download.html?PACKAGE=OPENVINO_BASE&VERSION=v_2025_3_0&OP_SYSTEM=WINDOWS&DISTRIBUTION=ARCHIVE).
296296
* [Linux - CPU, GPU, NPU](https://www.intel.com/content/www/us/en/developer/tools/openvino-toolkit/download.html?PACKAGE=OPENVINO_BASE&VERSION=v_2025_3_0&OP_SYSTEM=LINUX&DISTRIBUTION=ARCHIVE)
297-
297+
298298
Follow [documentation](https://docs.openvino.ai/2025/index.html) for detailed instructions.
299+
300+
*2025.3 is the current recommended OpenVINO™ version. [OpenVINO™ 2025.0](https://docs.openvino.ai/2025/index.html) is minimal OpenVINO™ version requirement.*
299301

300-
*2025.3 is the current recommended OpenVINO™ version. [OpenVINO™ 2025.0](https://docs.openvino.ai/2025/index.html) is minimal OpenVINO™ version requirement.*
302+
2. Install CMake 3.28 or higher. Download from the [official CMake website](https://cmake.org/download/).
301303

302-
2. Configure the target hardware with specific follow on instructions:
304+
3. Configure the target hardware with specific follow on instructions:
303305
* To configure Intel<sup>®</sup> Processor Graphics(GPU) please follow these instructions: [Windows](https://docs.openvino.ai/2025/get-started/install-openvino/configurations/configurations-intel-gpu.html#windows), [Linux](https://docs.openvino.ai/2025/get-started/install-openvino/configurations/configurations-intel-gpu.html#linux)
304306

305-
306-
3. Initialize the OpenVINO™ environment by running the setupvars script as shown below. This is a required step:
307+
4. Initialize the OpenVINO™ environment by running the setupvars script as shown below. This is a required step:
307308
* For Windows:
308309
```
309310
C:\<openvino_install_directory>\setupvars.bat
@@ -320,15 +321,15 @@ See more information on the OpenVINO™ Execution Provider [here](../execution-p
320321
#### Windows
321322

322323
```
323-
.\build.bat --config RelWithDebInfo --use_openvino <hardware_option> --build_shared_lib --build_wheel
324+
.\build.bat --config Release --use_openvino <hardware_option> --build_shared_lib --build_wheel
324325
```
325326

326327
*Note: The default Windows CMake Generator is Visual Studio 2019, but you can also use the newer Visual Studio 2022 by passing `--cmake_generator "Visual Studio 17 2022"` to `.\build.bat`*
327328

328329
#### Linux
329330

330331
```bash
331-
./build.sh --config RelWithDebInfo --use_openvino <hardware_option> --build_shared_lib --build_wheel
332+
./build.sh --config Release --use_openvino <hardware_option> --build_shared_lib --build_wheel
332333
```
333334

334335
* `--build_wheel` Creates python wheel file in dist/ folder. Enable it when building from source.
@@ -344,34 +345,18 @@ Refer to [Intel GPU device naming convention](https://docs.openvino.ai/2025/open
344345
| <code>GPU.0</code> | Intel<sup>®</sup> Integrated Graphics |
345346
| <code>GPU.1</code> | Intel<sup>®</sup> Discrete Graphics |
346347
| <code>NPU</code> | Intel<sup>®</sup> Neural Processor Unit |
347-
| <code>HETERO:DEVICE_TYPE_1,DEVICE_TYPE_2,DEVICE_TYPE_3...</code> | All Intel<sup>®</sup> silicons mentioned above |
348-
| <code>MULTI:DEVICE_TYPE_1,DEVICE_TYPE_2,DEVICE_TYPE_3...</code> | All Intel<sup>®</sup> silicons mentioned above |
349-
| <code>AUTO:DEVICE_TYPE_1,DEVICE_TYPE_2,DEVICE_TYPE_3...</code> | All Intel<sup>®</sup> silicons mentioned above |
350-
351-
Specifying Hardware Target for HETERO or Multi or AUTO device Build:
352348
353-
HETERO:DEVICE_TYPE_1,DEVICE_TYPE_2,DEVICE_TYPE_3...
354-
The DEVICE_TYPE can be any of these devices from this list ['CPU','GPU', 'NPU']
355-
356-
A minimum of two device's should be specified for a valid HETERO or MULTI or AUTO device build.
357-
358-
```
359-
Example's: HETERO:GPU,CPU or AUTO:GPU,CPU or MULTI:GPU,CPU
360-
```
361349
362350
#### Disable subgraph partition Feature
363-
* Builds the OpenVINO™ Execution Provider in ONNX Runtime with sub graph partitioning disabled.
364-
365-
* With this option enabled. Fully supported models run on OpenVINO Execution Provider else they completely fall back to default CPU EP.
351+
* Builds the OpenVINO™ Execution Provider in ONNX Runtime with graph partitioning disabled, which will run fully supported models on OpenVINO Execution Provider else they completely fall back to default CPU EP,
366352
367353
* To enable this feature during build time. Use `--use_openvino ` `<hardware_option>_NO_PARTITION`
368354
369355
```
370-
Usage: --use_openvino CPU_NO_PARTITION or --use_openvino GPU_NO_PARTITION or
371-
--use_openvino GPU_NO_PARTITION
356+
Usage: --use_openvino CPU_NO_PARTITION or --use_openvino GPU_NO_PARTITION or --use_openvino NPU_NO_PARTITION
372357
```
373358
374-
For more information on OpenVINO™ Execution Provider&#39;s ONNX Layer support, Topology support, and Intel hardware enabled, please refer to the document [OpenVINO™-ExecutionProvider](../execution-providers/OpenVINO-ExecutionProvider.md)
359+
For more information on OpenVINO™ Execution Provider&#39;s ONNX Layer support, Topology support, and Intel hardware enabled, please refer to the document [OpenVINO™-ExecutionProvider](../execution-providers/OpenVINO-ExecutionProvider.md#support-coverage)
375360
376361
---
377362

0 commit comments

Comments
 (0)