From b4b89604628b70be640466c89097ca483f5674e1 Mon Sep 17 00:00:00 2001 From: Hector Li Date: Tue, 29 Oct 2024 16:21:21 -0700 Subject: [PATCH] format --- docs/execution-providers/QNN-ExecutionProvider.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/execution-providers/QNN-ExecutionProvider.md b/docs/execution-providers/QNN-ExecutionProvider.md index f225e5a414262..0edf809b04a15 100644 --- a/docs/execution-providers/QNN-ExecutionProvider.md +++ b/docs/execution-providers/QNN-ExecutionProvider.md @@ -514,8 +514,10 @@ To enable new operator support in EP, areas to visit: 1. QDQ script support this Op? [code example](https://github.com/microsoft/onnxruntime/pull/14867/files#diff-b1ea073c326fef46054382117c256f106d39bd7c34539d44c6e6d9e9eacc059c) 2. Onnxruntime QDQ node unit support this Op? [code example](https://github.com/microsoft/onnxruntime/pull/14867/files#diff-ce0281aaf63e03ecadd592240e41f18742bf8eb095b3725c0e55e589c890946f) 3. Is it layout sensitive operator? + 3.1 Registered in LayoutTransformer? [code example](https://github.com/microsoft/onnxruntime/blob/6d464748ba7fed2275ecba3a7406298cabc93438/onnxruntime/core/optimizer/transpose_optimizer/transpose_optimizer.cc#L2168) + 3.2 NHWC op schema registered? Example error message: ::operator ()] Model face_det_qdq failed to load:Fatal error: com.ms.internal.nhwc:BatchNormalization(9) is not a registered function/op @@ -523,4 +525,5 @@ To enable new operator support in EP, areas to visit: Example PRs to enable new operators: Non-layout sensitive operator. [Enable Hardsigmoid for QNN EP using SDK support direct support](https://github.com/microsoft/onnxruntime/pull/20956) + Layout sensitive operator. [Add InstanceNormalization operator to QNN EP](https://github.com/microsoft/onnxruntime/pull/14867) \ No newline at end of file