mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-20 21:40:57 +00:00
[C API Docs ] Address doxygen errors (#20714)
### Description Make C API compliant with Doxygen expectations ### Motivation and Context Doc workflow is failing.
This commit is contained in:
parent
2e7de54565
commit
bd7a0fb377
1 changed files with 6 additions and 4 deletions
|
|
@ -1847,8 +1847,8 @@ struct OrtApi {
|
|||
* and not present, the function returns success and out is set to nullptr.
|
||||
*
|
||||
* \param[in] context ::OrtKernelContext instance
|
||||
* \param[in] input index. See KernelContext_GetInputCount for boundaries check.
|
||||
* \param[in, out] returns a ptr to OrtValue if the input is present
|
||||
* \param[in] index See KernelContext_GetInputCount for boundaries check.
|
||||
* \param[out] out OrtValue if the input is present otherwise is set nullptr
|
||||
*
|
||||
* \snippet{doc} snippets.dox OrtStatus Return Value
|
||||
*/
|
||||
|
|
@ -1861,8 +1861,10 @@ struct OrtApi {
|
|||
* and not present, the function returns success and out is set to nullptr.
|
||||
*
|
||||
* \param[in] context ::OrtKernelContext instance
|
||||
* \param[in] output index. See KernelContext_GetOutputCount for boundaries check.
|
||||
* \param[in, out] returns a ptr to OrtValue if the output is present
|
||||
* \param[in] index See KernelContext_GetOutputCount for boundaries check.
|
||||
* \param[in] dim_values output dimensions
|
||||
* \param[in] dim_count number of dimensions
|
||||
* \param[out] out a ptr to OrtValue to output otherwise set to nullptr
|
||||
*
|
||||
* \snippet{doc} snippets.dox OrtStatus Return Value
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in a new issue