We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ORT Model Builder API allows to save the optimized ONNX model
/** \brief Set filepath to save optimized model after graph level transformations * * \param[in] options * \param[in] optimized_model_filepath * * \snippet{doc} snippets.dox OrtStatus Return Value */ ORT_API2_STATUS(SetOptimizedModelFilePath, _Inout_ OrtSessionOptions* options, _In_ const ORTCHAR_T* optimized_model_filepath);
However, it does not currently support saving tensors created with CreateTensorWithDataAsOrtValue or CreateTensorWithDataAndDeleterAsOrtValue.
CreateTensorWithDataAsOrtValue
CreateTensorWithDataAndDeleterAsOrtValue
See discussion for more details: microsoft/onnxruntime#23223 (comment)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
ORT Model Builder API allows to save the optimized ONNX model
However, it does not currently support saving tensors created with
CreateTensorWithDataAsOrtValue
orCreateTensorWithDataAndDeleterAsOrtValue
.See discussion for more details: microsoft/onnxruntime#23223 (comment)
The text was updated successfully, but these errors were encountered: