Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions include/onnxruntime/core/session/onnxruntime_cxx_inline.h
Original file line number Diff line number Diff line change
Expand Up @@ -1873,6 +1873,7 @@ inline std::vector<std::string> ConstSessionImpl<T>::GetOverridableInitializerNa
char* name;
ThrowOnError(GetApi().SessionGetOverridableInitializerName(this->p_, i, allocator, &name));
initializer_names.emplace_back(name);
allocator.Free(name);
}

return initializer_names;
Expand Down
Loading