Skip to content
1 change: 1 addition & 0 deletions docs/execution_providers/QNN-ExecutionProvider.md
Original file line number Diff line number Diff line change
Expand Up @@ -566,6 +566,7 @@ ort.unregister_execution_provider_library(ep_registration_name)
|ai.onnx:MatMulInteger|Supported exclusively via DynamicQuantizeLinear → MatMulInteger fusion pattern|
|ai.onnx:Max||
|ai.onnx:MaxPool||
|ai.onnx:MaxRoiPool|rois must be a constant initializer|
|ai.onnx:Mean||
|ai.onnx:Min||
|ai.onnx:Mod||
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ OpBuilderRegistrations::OpBuilderRegistrations() {
CreateLSTMOpBuilder("LSTM", *this);
CreateMatMulOpBuilder("MatMul", *this);
CreateMatMulNBitsOpBuilder("MatMulNBits", *this);
CreateMaxRoiPoolOpBuilder("MaxRoiPool", *this);
CreateMeanOpBuilder("Mean", *this);
CreateModOpBuilder("Mod", *this);
CreateNonMaxSuppressionOpBuilder("NonMaxSuppression", *this);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ void CreateLRNOpBuilder(const std::string& op_type, OpBuilderRegistrations& op_r
void CreateLSTMOpBuilder(const std::string& op_type, OpBuilderRegistrations& op_registrations);
void CreateMatMulOpBuilder(const std::string& op_type, OpBuilderRegistrations& op_registrations);
void CreateMatMulNBitsOpBuilder(const std::string& op_type, OpBuilderRegistrations& op_registrations);
void CreateMaxRoiPoolOpBuilder(const std::string& op_type, OpBuilderRegistrations& op_registrations);
void CreateMeanOpBuilder(const std::string& op_type, OpBuilderRegistrations& op_registrations);
void CreateModOpBuilder(const std::string& op_type, OpBuilderRegistrations& op_registrations);
void CreateNonMaxSuppressionOpBuilder(const std::string& op_type, OpBuilderRegistrations& op_registrations);
Expand Down
Loading