Fix the doxygen error (#20515)

Fix
onnxruntime/include/onnxruntime/core/session/onnxruntime_c_api.h:4637:
error: argument 'session' of command @param is not found in the argument
list of

```
OrtApi::AddExternalInitializersFromFilesInMemory(
    OrtSessionOptions *options,
    const char *const *external_initializer_file_names,
    char *const *external_initializer_file_buffer_array,
    const size_t *external_initializer_file_lengths,
    size_t num_external_initializer_files)
```
This commit is contained in:
Yi-Hong Lyu 2024-04-30 11:45:03 -07:00 committed by GitHub
parent 9f0fae29e8
commit 33e883fbc4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4641,7 +4641,7 @@ struct OrtApi {
* will occur before any of the optimizations take place. The data will be copied into the graph
* since TensorProto can't refer to the user provided buffers.
*
* \param[in] session options
* \param[in] options
* \param[in] external_initializer_file_names Array of null terminated UTF-8 encoded strings of the file names
* which holds the external initializers.
* \param[in] external_initializer_file_buffer_array Array of pointers to the buffer of the file content.