You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/execution-providers/plugin-ep-libraries.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ The ONNX Runtime repository includes a [sample plugin EP library](https://github
28
28
### Defining an OrtEp
29
29
An `OrtEp` represents an instance of an EP that is used by an ONNX Runtime session to identify and execute the model operations supported by the EP.
30
30
31
-
The following table lists the **required**varibles and functions that an implementer must define for an `OrtEp`.
31
+
The following table lists the **required**variables and functions that an implementer must define for an `OrtEp`.
32
32
33
33
<table>
34
34
<tr>
@@ -105,7 +105,7 @@ Implementation of this function is optional. If an EP prefers a non-default data
105
105
<td>SetDynamicOptions</td>
106
106
<td>
107
107
Set dynamic options on this EP. Dynamic options can be set by the application at any time after session creation with <ahref="https://onnxruntime.ai/docs/api/c/struct_ort_api.html#ab1117a51683e4fbb42687c9db6e8d5fb"><code>OrtApi::SetEpDynamicOptions()</code></a>.<br/><br/>
108
-
Implementation of this function is optional. An EP should only impliment this function if it needs to handle any dynamic options.
108
+
Implementation of this function is optional. An EP should only implement this function if it needs to handle any dynamic options.
109
109
</td>
110
110
<td></td>
111
111
</tr>
@@ -114,7 +114,7 @@ Implementation of this function is optional. An EP should only impliment this fu
114
114
<td>OnRunStart</td>
115
115
<td>
116
116
Called by ORT to notify the EP of the start of a run.<br/><br/>
117
-
Implementation of this function is optional. An EP should only impliment this function if it needs to handle application-provided options at the start of a run.
117
+
Implementation of this function is optional. An EP should only implement this function if it needs to handle application-provided options at the start of a run.
118
118
</td>
119
119
<td></td>
120
120
</tr>
@@ -123,7 +123,7 @@ Implementation of this function is optional. An EP should only impliment this fu
123
123
<td>OnRunEnd</td>
124
124
<td>
125
125
Called by ORT to notify the EP of the end of a run.<br/><br/>
126
-
Implementation of this function is optional. An EP should only impliment this function if it needs to handle application-provided options at the end of a run.
126
+
Implementation of this function is optional. An EP should only implement this function if it needs to handle application-provided options at the end of a run.
0 commit comments