Skip to content

Commit 0d59f8d

Browse files
Fix C++ documentation generation (#26901)
### Description Fixes C++ documentation generation errors introduced in previous PRs that added APIs for plugin EPs. Passing run: https://github.com/microsoft/onnxruntime/actions/runs/20668349351
1 parent d1857d1 commit 0d59f8d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

include/onnxruntime/core/session/onnxruntime_ep_c_api.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -348,11 +348,11 @@ struct OrtKernelImpl {
348348
* the application for the session/environment (e.g., via CreateAndRegisterAllocator[V2]
349349
* or RegisterAllocator), or an allocator on the OrtEpDevice (read-only or default) otherwise.
350350
* The allocator remains valid throughout the lifetime of the OrtKernelImpl instance.
351-
* \param[in] prepacked_weights_cache May be NULL. If not NULL, the kernel may choose to share a packed weight by
352-
* first storing it in the OrtSharedPrePackedWeightCache instance and then
353-
* receiving the actual shared weight data in the call to
354-
* OrtKernelImpl::SetSharedPrePackedWeight(). See the above description for
355-
* "sharing mode".
351+
* \param[in] prepacked_weight_cache May be NULL. If not NULL, the kernel may choose to share a packed weight by
352+
* first storing it in the OrtSharedPrePackedWeightCache instance and then
353+
* receiving the actual shared weight data in the call to
354+
* OrtKernelImpl::SetSharedPrePackedWeight(). See the above description for
355+
* "sharing mode".
356356
* \param[out] is_packed Output parameter that the implementation sets to true if the kernel packed the tensor data.
357357
*
358358
* \snippet{doc} snippets.dox OrtStatus Return Value
@@ -868,8 +868,8 @@ struct OrtEpApi {
868868
/** \brief Gets the kernel's opset version range that is supported.
869869
*
870870
* \param[in] kernel_def The OrtKernelDef instance.
871-
* \param[out] version_start Output parameter set to the starting opset version that is supported.
872-
* \param[out] version_end Output parameter set to the ending opset version (inclusive) that is supported.
871+
* \param[out] start_version Output parameter set to the starting opset version that is supported.
872+
* \param[out] end_version Output parameter set to the ending opset version (inclusive) that is supported.
873873
*
874874
* \snippet{doc} snippets.dox OrtStatus Return Value
875875
*
@@ -954,7 +954,7 @@ struct OrtEpApi {
954954
*
955955
* \note Subsequent calls with the same OrtSharedPrePackedWeightCache instance release and replace the old data.
956956
*
957-
* \param[in] this_ptr The OrtKernelImpl instance.
957+
* \param[in] prepacked_weight_cache The OrtSharedPrePackedWeightCache instance.
958958
* \param[in] buffer_data_ptrs An array of buffer data pointers that collectively hold the pre-packed data for a
959959
* single shared weight. Note that sometimes a single weight may have multiple pre-packed
960960
* buffers and it is up to the kernel implementation to determine how to split the data

0 commit comments

Comments
 (0)