@@ -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