Skip to content

Commit d2bfe5a

Browse files
committed
adjust relative paths to pngs
1 parent a9908f4 commit d2bfe5a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/execution-providers/plugin-ep-libraries/development-and-usage.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ For example, if a single factory instance supports both CPU and NPU, then the ca
328328
- ep_device_1: (factory_0, NPU)
329329

330330
<br/>
331-
<p align="center"><img width="100%" src="../../images/plugin_ep_sd_lib_reg.png" alt="Sequence diagram showing registration and unregistration of a plugin EP library"/></p>
331+
<p align="center"><img width="100%" src="../../../images/plugin_ep_sd_lib_reg.png" alt="Sequence diagram showing registration and unregistration of a plugin EP library"/></p>
332332

333333
### Session creation with explicit OrtEpDevice(s)
334334
The application code below uses the API function [SessionOptionsAppendExecutionProvider_V2](https://onnxruntime.ai/docs/api/c/struct_ort_api.html#a285a5da8c9a63eff55dc48e4cf3b56f6) to add an EP from a library to an ONNX Runtime session.
@@ -372,7 +372,7 @@ env.UnregisterExecutionProviderLibrary(/*...*/);
372372
As shown in the following sequence diagram, ONNX Runtime calls `OrtEpFactory::CreateEp()` during session creation in order to create an instance of the plugin EP.
373373

374374
<br/>
375-
<p align="center"><img width="100%" src="../../images/plugin_ep_sd_appendv2.png" alt="Sequence diagram showing session creation with explicit ep devices"/></p>
375+
<p align="center"><img width="100%" src="../../../images/plugin_ep_sd_appendv2.png" alt="Sequence diagram showing session creation with explicit ep devices"/></p>
376376

377377
### Session creation with automatic EP selection
378378
The application code below uses the API function [SessionOptionsSetEpSelectionPolicy](https://onnxruntime.ai/docs/api/c/struct_ort_api.html#a2ae116df2c6293e4094a6742a6c46f7e) to have ONNX Runtime automatically select an EP based on the user's policy (e.g., PREFER_NPU).
@@ -395,7 +395,7 @@ env.UnregisterExecutionProviderLibrary(/*...*/);
395395
```
396396

397397
<br/>
398-
<p align="center"><img width="100%" src="../../images/plugin_ep_sd_autoep.png" alt="Sequence diagram showing session creation with automatic EP selection"/></p>
398+
<p align="center"><img width="100%" src="../../../images/plugin_ep_sd_autoep.png" alt="Sequence diagram showing session creation with automatic EP selection"/></p>
399399

400400
## API reference
401401
API header files:

0 commit comments

Comments
 (0)