Edward Chen
Edward Chen
thanks for setting this up!
> Sure. For [this comment](https://github.com/microsoft/onnxruntime/pull/12041#discussion_r914281897), I will do > > ``` > if (onnxModelFileName.Contains("opset9") && onnxModelFileName.Contains("LSTM_Seq_lens_unpacked"); > { > Console.WriteLine($"Change data folder's pattern for LSTM_Seq_lens_unpacked in opset 9."); > testDataDirNamePattern...
Please keep the pinning of the specific NDK version. You can remove the installation if you want. It's hard to detect if NDK version changes introduce issues otherwise.
> > Please keep the pinning of the specific NDK version. You can remove the installation if you want. It's hard to detect if NDK version changes introduce issues otherwise....
Regarding Pad op spec: https://github.com/onnx/onnx/blob/0e9debaabfb34cee378ab3ed704c2717e6c168b7/docs/Operators.md?plain=1#L17129-L17142 - should probably also mention optional `axes` input in the first sentence - "The three supported `modes` are..." and then four are given
Regarding MeanVarianceNormalization op spec: https://github.com/onnx/onnx/blob/0f536363edbfdc9653a544c48f69c2c194b38daa/docs/Operators.md?plain=1#L15221-L15226 - How should the default `axes` value be interpreted for inputs with fewer than four dimensions? The "C" reference seems specific to NCHW. This op...
Looks like there is a shared library, DocumentReaderCore: ``` % file Pods/DocumentReaderFullRFID/DocumentReaderCore.xcframework/ios-arm64_x86_64-simulator/DocumentReaderCore.framework/DocumentReaderCore Pods/DocumentReaderFullRFID/DocumentReaderCore.xcframework/ios-arm64_x86_64-simulator/DocumentReaderCore.framework/DocumentReaderCore: Mach-O universal binary with 2 architectures: [x86_64:Mach-O 64-bit dynamically linked shared library x86_64] [arm64] Pods/DocumentReaderFullRFID/DocumentReaderCore.xcframework/ios-arm64_x86_64-simulator/DocumentReaderCore.framework/DocumentReaderCore (for architecture...
When using the C++ API, you probably do not want to call `release()` and not do anything with the returned value. This will leak resources. https://github.com/microsoft/onnxruntime/blob/e81c8676e3001c0c148b2d5495f90d048b2c9480/include/onnxruntime/core/session/onnxruntime_cxx_api.h#L575-L581 The underlying C API...
Please provide more information about this issue. E.g., how to reproduce it.
Clip should be supported with int64 input. https://github.com/microsoft/onnxruntime/blob/v1.17.1/docs/OperatorKernels.md#cpuexecutionprovider What ONNX opset version is the model using?