onnxruntime/js/web/docs/webgpu-operators.md

108 lines
4.7 KiB
Markdown
Raw Normal View History

## Operators Support Table
The following table shows ONNX
operators and the supported opset domain/versions in WebGPU EP by ONNX Runtime Web. For example,
`4-6, 8+` means ONNX Runtime Web currently support opset version 4 to 6, 8 and above.
*This file is automatically generated from the
def files via [this script](../script/generate-webgpu-operator-md.ts).
Do not modify directly.*
| Operator | Opset | Comments |
|:--------:|:-------------:|-----|
| Abs | ai.onnx(6-12,13+) | |
| Acos | ai.onnx(7+) | |
| Acosh | ai.onnx(9+) | |
| Add | ai.onnx(7-12,13,14+) | |
| ArgMax | ai.onnx(1-10,11-12,13+) | |
| ArgMin | ai.onnx(1-10,11-12,13+) | |
| Asin | ai.onnx(7+) | |
| Asinh | ai.onnx(9+) | |
| Atan | ai.onnx(7+) | |
| Atanh | ai.onnx(9+) | |
| Attention | com.microsoft(1+) | need implementing mask and past/present |
Update XNNPACK to latest version (#18038) ### Description <!-- Describe your changes. --> Update XNNPACK to latest version - adds fp16 kernels and various other improvements - requires pthreadpool update as well Most code updates in the XNNPACK EP are to adjust to the new XNNPACK API - 'setup' is split into 'reshape' and 'setup' - some ops use a workspace buffer - copied workspace allocation from XNNPACK unit test code - some suffixes changed Added wrapper for XNNPACK caches to base XNNPACK EP kernel - simplifies usage - XNNPACK split out the code and weights caches, but the code cache isn't currently usable via the public API - we could use the internal types if we think it's required for performance reasons. non-trivial though as we'd need to propagate ifdef values from the XNNPACK build up to the ORT build. - using XNNPACK internals would also mean we would not be able to support using a pre-build XNNPACK package - not an issue currently Fixed opset registration for internal NHWC domain - was not being tied to the ONNX version, so nodes inserted by layout transformation had the incorrect opset - a number of other places needed updating once this issue was fixed Remove support for NCHW Resize from XNNPACK EP so it's NHWC only - we only supported NCHW for fp32, - doing so adds complexity in multiple places (XNNPACK EP kernel implementation, layout transformation and transpose optimization) - unclear if that complexity provides any benefit. can add back if required by production scenario ### Motivation and Context <!-- - Why is this change required? What problem does it solve? - If it fixes an open issue, please link to the issue here. --> We're looking at enabling fp16 support for CoreML and NNAPI. If we do that we need a good fallback story if the CPU EP will be used. The XNNPACK fp16 kernels will hopefully provide that. NOTE: This PR doesn't add fp16 support to the XNNPACK EP kernels. That can be done as required in separate EPs and should be relatively simple to do.
2023-11-03 16:04:28 +00:00
| AveragePool | ai.onnx(7-9,10,11+); com.ms.internal.nhwc(7-9,10,11+) | need perf optimization; need implementing activation |
| BatchNormalization | ai.onnx(7-8,9-13,14,15+); com.ms.internal.nhwc(7-8,9-13,14,15+) | |
| BiasAdd | com.microsoft(1+) | |
| BiasSplitGelu | com.microsoft(1+) | |
| Cast | ai.onnx(6-8,9-12,13-18,19+) | |
| Ceil | ai.onnx(6-12,13+) | |
| Clip | ai.onnx(6-10,11,12,13+) | |
| Concat | ai.onnx(1-3,4-10,11-12,13+) | |
Update XNNPACK to latest version (#18038) ### Description <!-- Describe your changes. --> Update XNNPACK to latest version - adds fp16 kernels and various other improvements - requires pthreadpool update as well Most code updates in the XNNPACK EP are to adjust to the new XNNPACK API - 'setup' is split into 'reshape' and 'setup' - some ops use a workspace buffer - copied workspace allocation from XNNPACK unit test code - some suffixes changed Added wrapper for XNNPACK caches to base XNNPACK EP kernel - simplifies usage - XNNPACK split out the code and weights caches, but the code cache isn't currently usable via the public API - we could use the internal types if we think it's required for performance reasons. non-trivial though as we'd need to propagate ifdef values from the XNNPACK build up to the ORT build. - using XNNPACK internals would also mean we would not be able to support using a pre-build XNNPACK package - not an issue currently Fixed opset registration for internal NHWC domain - was not being tied to the ONNX version, so nodes inserted by layout transformation had the incorrect opset - a number of other places needed updating once this issue was fixed Remove support for NCHW Resize from XNNPACK EP so it's NHWC only - we only supported NCHW for fp32, - doing so adds complexity in multiple places (XNNPACK EP kernel implementation, layout transformation and transpose optimization) - unclear if that complexity provides any benefit. can add back if required by production scenario ### Motivation and Context <!-- - Why is this change required? What problem does it solve? - If it fixes an open issue, please link to the issue here. --> We're looking at enabling fp16 support for CoreML and NNAPI. If we do that we need a good fallback story if the CPU EP will be used. The XNNPACK fp16 kernels will hopefully provide that. NOTE: This PR doesn't add fp16 support to the XNNPACK EP kernels. That can be done as required in separate EPs and should be relatively simple to do.
2023-11-03 16:04:28 +00:00
| Conv | ai.onnx(1-10,11+); com.ms.internal.nhwc(1-10,11+) | need perf optimization; conv3d is not supported; need implementing activation |
| ConvTranspose | ai.onnx(1-10,11+); com.ms.internal.nhwc(1-10,11+) | need perf optimization; ConvTranspose3d is not supported; need implementing activation |
| Cos | ai.onnx(7+) | |
| Cosh | ai.onnx(9+) | |
| CumSum | ai.onnx(11-13,14+) | |
| Div | ai.onnx(7-12,13,14+) | |
| Einsum | ai.onnx(12+) | |
| Elu | ai.onnx(6+) | |
| Equal | ai.onnx(7-10,11-12,13-18,19+) | |
| Erf | ai.onnx(9-12,13+) | |
| Exp | ai.onnx(6-12,13+) | |
| Expand | ai.onnx(8-12,13+) | |
1.17.3 cherry-picks for ORT Web changes (#19926) ### Description This PR is a preview of cherry-picks for ort-web to `rel-1.17.3` based on `rel-1.17.2`. <details> <summary>Changes of ort-web to cherry-pick</summary> The following commits are from main branch. `o` stands for pick, and `x` stands for skip. ``` o 2e0a388c36 [js/webgpu] Add HardSigmoid support (#19215) o d226e40856 [js/webgpu] set query type in onRunStart (#19202) o 61610ff986 [js/webgpu] Add FusedConv clip test case (#18900) o a33b5bd1fa [JS/WebGPU] Added Uniforms to SkipLayerNorm. (#18788) o 591f90c0b9 [js/webgpu] Fix issue of timestamp query (#19258) o 7252c6e747 [WebNN EP] Support WebNN async API with Asyncify (#19145) o 5b06505073 [js/webgpu] Fix Tanh explosion (#19201) o 656ca66186 [js/webgpu] Support uniforms for conv, conv transpose, conv grouped (#18753) o a3f0e2422b [js/webgpu] Support f16 uniform (#19098) o 9e69606360 fix f16 for attention, enable slice and flatten for more types (#19262) o 624b4e2063 [js/webgpu] Remove enableShapesUniforms (#19279) o 90883a366a [js/webgpu] Add hardSigmoid activation for fusedConv (#19233) o 85cef0af8c [js/webgpu] Support capture and replay for jsep (#18989) o d73131cf0f [js/webgpu] Use DataType as uniform cpu type (#19281) o dd1f6ccc45 [js/webgpu] resolve codescan alert (#19343) o 3a2ab1963a [js/webgpu] Refactor createTensorShapeVariables (#18883) o efc17e79de [js/webgpu] Fix the undefined push error (#19366) x 50806a7dd5 [js/web] support external data in npm test (#19377) o ccbe264a39 [js/webgpu] Add LeakyRelu activation for fusedConv (#19369) o 5ff27ef02a [js/webgpu] support customop FastGelu (#19392) x 03be65e064 [js/web] fix types exports in package.json (#19458) o 06269a3952 [js/webgpu] allow uint8 tensors for webgpu (#19545) o dfeda9019c [JS/WebGPU] Add MatMulNBits (#19446) o 1b48054e1b [js/webgpu] Create Split indices helpers by rank, not by shape (#19554) o 3fe2c137ee [js] small fix to workaround formatter (#19400) x 70567a4b3a [js/web] use ApiTensor insteadof onnxjs Tensor in TensorResultValidator (#19358) o 6e04e36e3f [js/common] upgrade tsc in common from 4.9.5 to 5.2.2 (#19317) o 58f4921686 [js] changes to allow Float16Array if any polyfill is available (#19305) o 57d6819212 [js/web] Fix fused-conv is not included in npm test (#19581) o ebd220b073 Misspelling in README.md (#19433) o 38c3432393 Bump ip from 1.1.8 to 1.1.9 in /js/react_native (#19582) o fe82fccf1a [js/webgpu] Fix Conv2DTransposeMatMul f16 compilation failure (#19596) o 76a2a487a1 Bump ip from 1.1.8 to 1.1.9 in /js/react_native/e2e (#19583) o 29b1106033 [node] Switch to setImmediate to avoid starving the Node.js event loop (#19610) o ae3d73c981 [JS/WebGPU] Fix Split and Where to handle corner cases. (#19613) o aec2389ad0 [js/webgpu] allows a ProgramInfo's RunData to use zero sized output (#19614) o bb43a0f133 [js/webgpu] minor fixes to make tinyllama work (#19564) o 0edb035808 [js/web] fix suite test list for zero sized tensor (#19638) o 3cb81cdde2 [js/common] move 'env.wasm.trace' to 'env.trace' (#19617) o e30618d055 [js/webgpu] use Headless for webgpu test by default (#19702) o f06164ef8b [js/web] transfer input buffer back to caller thread (#19677) x a788514027 [js/web] dump debug logs for karma for diagnose purpose (#19785) o 24b72d2613 [JS/WebGPU] Preserve zero size input tensor dims. (#19737) o 4538d31a8b [js/webgpu] expose a few properties in WebGPU API (#19857) o 53de2d8cb0 [js/webgpu] Enable GroupedConvVectorize path (#19791) o ed250b88c3 [JS/WebGPU] Optimize MatMulNBits (#19852) x e771a763c3 [js/test] align web test runner flags with ort.env (#19790) o 79e50aeef3 [js/web] rewrite backend resolve to allow multiple EPs (#19735) o acb0df2280 Fix #19931 broken Get Started link of "ONNX Runtime JavaScript API" page (#19932) o b29849a287 [js/common] fix typedoc warnings (#19933) o afdab62f53 Bump follow-redirects from 1.15.4 to 1.15.6 in /js/web (#19949) o 28ad6c3955 Bump follow-redirects from 1.15.4 to 1.15.6 in /js/node (#19951) o 7e0d424934 accumulate in fp32 for Reduce* (#19868) o 4c6a6a37f7 [js/webgpu] Fix NAN caused by un-initialized buffer in instance-norm (#19387) o 01c7aaf6aa [js/webgpu] allow setting env.webgpu.adapter (#19940) o c45cff60cf [js/webgpu] fix maxpool / fp16 (#19981) ``` </details> <details> <summary>Cherry-pick commandlines</summary> ```sh git cherry-pick 2e0a388c36 git cherry-pick d226e40856 git cherry-pick 61610ff986 git cherry-pick a33b5bd1fa git cherry-pick 591f90c0b9 git cherry-pick 7252c6e747 git cherry-pick 5b06505073 git cherry-pick 656ca66186 git cherry-pick a3f0e2422b git cherry-pick 9e69606360 git cherry-pick 624b4e2063 git cherry-pick 90883a366a git cherry-pick 85cef0af8c #<<<<< Note: conflicts git cherry-pick d73131cf0f git cherry-pick dd1f6ccc45 git cherry-pick 3a2ab1963a git cherry-pick efc17e79de git cherry-pick ccbe264a39 git cherry-pick 5ff27ef02a git cherry-pick 06269a3952 git cherry-pick dfeda9019c git cherry-pick 1b48054e1b git cherry-pick 3fe2c137ee git cherry-pick 6e04e36e3f git cherry-pick 58f4921686 git cherry-pick 57d6819212 git cherry-pick ebd220b073 git cherry-pick 38c3432393 git cherry-pick fe82fccf1a git cherry-pick 76a2a487a1 git cherry-pick 29b1106033 git cherry-pick ae3d73c981 git cherry-pick aec2389ad0 git cherry-pick bb43a0f133 git cherry-pick 0edb035808 git cherry-pick 3cb81cdde2 git cherry-pick e30618d055 git cherry-pick f06164ef8b git cherry-pick 24b72d2613 git cherry-pick 4538d31a8b git cherry-pick 53de2d8cb0 git cherry-pick ed250b88c3 git cherry-pick 79e50aeef3 git cherry-pick acb0df2280 git cherry-pick b29849a287 git cherry-pick afdab62f53 git cherry-pick 28ad6c3955 git cherry-pick 7e0d424934 git cherry-pick 4c6a6a37f7 git cherry-pick 01c7aaf6aa git cherry-pick c45cff60cf ``` </details> <details> <summary>Cherry-pick conflicts</summary> - 85cef0af8c #18989 this change is for enabling graph capture feature for JSEP, and it is done after ROCM EP enabled graph capture feature. However, the ROCM EP graph capture feature is not cherry-picked in rel-1.17.2. </details> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Jiajia Qin <jiajia.qin@intel.com> Co-authored-by: Xu Xing <xing.xu@intel.com> Co-authored-by: satyajandhyala <satya.k.jandhyala@gmail.com> Co-authored-by: Yang Gu <yang.gu@intel.com> Co-authored-by: Wanming Lin <wanming.lin@intel.com> Co-authored-by: Jiajie Hu <jiajie.hu@intel.com> Co-authored-by: Guenther Schmuelling <guschmue@microsoft.com> Co-authored-by: Matttttt <18152455+martholomew@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Segev Finer <segev208@gmail.com> Co-authored-by: Belem Zhang <belem.zhang@intel.com>
2024-03-29 20:13:39 +00:00
| FastGelu | com.microsoft(1+) | |
| Flatten | ai.onnx(1-8,9-10,11-12,13+) | |
| Floor | ai.onnx(6-12,13+) | |
| FusedConv | com.microsoft(1+) | |
| Gather | ai.onnx(1-10,11-12,13+) | |
| GatherElements | ai.onnx(11-12,13+) | |
| Gelu | com.microsoft(1+) | |
| Gemm | ai.onnx(7-8,9-10,11-12,13+) | |
| GlobalAveragePool | ai.onnx(1+); com.ms.internal.nhwc(1+) | |
| GlobalMaxPool | ai.onnx(1+); com.ms.internal.nhwc(1+) | |
| Greater | ai.onnx(7-8,9-12,13+) | |
| GreaterOrEqual | ai.onnx(12-15,16+) | |
1.17.3 cherry-picks for ORT Web changes (#19926) ### Description This PR is a preview of cherry-picks for ort-web to `rel-1.17.3` based on `rel-1.17.2`. <details> <summary>Changes of ort-web to cherry-pick</summary> The following commits are from main branch. `o` stands for pick, and `x` stands for skip. ``` o 2e0a388c36 [js/webgpu] Add HardSigmoid support (#19215) o d226e40856 [js/webgpu] set query type in onRunStart (#19202) o 61610ff986 [js/webgpu] Add FusedConv clip test case (#18900) o a33b5bd1fa [JS/WebGPU] Added Uniforms to SkipLayerNorm. (#18788) o 591f90c0b9 [js/webgpu] Fix issue of timestamp query (#19258) o 7252c6e747 [WebNN EP] Support WebNN async API with Asyncify (#19145) o 5b06505073 [js/webgpu] Fix Tanh explosion (#19201) o 656ca66186 [js/webgpu] Support uniforms for conv, conv transpose, conv grouped (#18753) o a3f0e2422b [js/webgpu] Support f16 uniform (#19098) o 9e69606360 fix f16 for attention, enable slice and flatten for more types (#19262) o 624b4e2063 [js/webgpu] Remove enableShapesUniforms (#19279) o 90883a366a [js/webgpu] Add hardSigmoid activation for fusedConv (#19233) o 85cef0af8c [js/webgpu] Support capture and replay for jsep (#18989) o d73131cf0f [js/webgpu] Use DataType as uniform cpu type (#19281) o dd1f6ccc45 [js/webgpu] resolve codescan alert (#19343) o 3a2ab1963a [js/webgpu] Refactor createTensorShapeVariables (#18883) o efc17e79de [js/webgpu] Fix the undefined push error (#19366) x 50806a7dd5 [js/web] support external data in npm test (#19377) o ccbe264a39 [js/webgpu] Add LeakyRelu activation for fusedConv (#19369) o 5ff27ef02a [js/webgpu] support customop FastGelu (#19392) x 03be65e064 [js/web] fix types exports in package.json (#19458) o 06269a3952 [js/webgpu] allow uint8 tensors for webgpu (#19545) o dfeda9019c [JS/WebGPU] Add MatMulNBits (#19446) o 1b48054e1b [js/webgpu] Create Split indices helpers by rank, not by shape (#19554) o 3fe2c137ee [js] small fix to workaround formatter (#19400) x 70567a4b3a [js/web] use ApiTensor insteadof onnxjs Tensor in TensorResultValidator (#19358) o 6e04e36e3f [js/common] upgrade tsc in common from 4.9.5 to 5.2.2 (#19317) o 58f4921686 [js] changes to allow Float16Array if any polyfill is available (#19305) o 57d6819212 [js/web] Fix fused-conv is not included in npm test (#19581) o ebd220b073 Misspelling in README.md (#19433) o 38c3432393 Bump ip from 1.1.8 to 1.1.9 in /js/react_native (#19582) o fe82fccf1a [js/webgpu] Fix Conv2DTransposeMatMul f16 compilation failure (#19596) o 76a2a487a1 Bump ip from 1.1.8 to 1.1.9 in /js/react_native/e2e (#19583) o 29b1106033 [node] Switch to setImmediate to avoid starving the Node.js event loop (#19610) o ae3d73c981 [JS/WebGPU] Fix Split and Where to handle corner cases. (#19613) o aec2389ad0 [js/webgpu] allows a ProgramInfo's RunData to use zero sized output (#19614) o bb43a0f133 [js/webgpu] minor fixes to make tinyllama work (#19564) o 0edb035808 [js/web] fix suite test list for zero sized tensor (#19638) o 3cb81cdde2 [js/common] move 'env.wasm.trace' to 'env.trace' (#19617) o e30618d055 [js/webgpu] use Headless for webgpu test by default (#19702) o f06164ef8b [js/web] transfer input buffer back to caller thread (#19677) x a788514027 [js/web] dump debug logs for karma for diagnose purpose (#19785) o 24b72d2613 [JS/WebGPU] Preserve zero size input tensor dims. (#19737) o 4538d31a8b [js/webgpu] expose a few properties in WebGPU API (#19857) o 53de2d8cb0 [js/webgpu] Enable GroupedConvVectorize path (#19791) o ed250b88c3 [JS/WebGPU] Optimize MatMulNBits (#19852) x e771a763c3 [js/test] align web test runner flags with ort.env (#19790) o 79e50aeef3 [js/web] rewrite backend resolve to allow multiple EPs (#19735) o acb0df2280 Fix #19931 broken Get Started link of "ONNX Runtime JavaScript API" page (#19932) o b29849a287 [js/common] fix typedoc warnings (#19933) o afdab62f53 Bump follow-redirects from 1.15.4 to 1.15.6 in /js/web (#19949) o 28ad6c3955 Bump follow-redirects from 1.15.4 to 1.15.6 in /js/node (#19951) o 7e0d424934 accumulate in fp32 for Reduce* (#19868) o 4c6a6a37f7 [js/webgpu] Fix NAN caused by un-initialized buffer in instance-norm (#19387) o 01c7aaf6aa [js/webgpu] allow setting env.webgpu.adapter (#19940) o c45cff60cf [js/webgpu] fix maxpool / fp16 (#19981) ``` </details> <details> <summary>Cherry-pick commandlines</summary> ```sh git cherry-pick 2e0a388c36 git cherry-pick d226e40856 git cherry-pick 61610ff986 git cherry-pick a33b5bd1fa git cherry-pick 591f90c0b9 git cherry-pick 7252c6e747 git cherry-pick 5b06505073 git cherry-pick 656ca66186 git cherry-pick a3f0e2422b git cherry-pick 9e69606360 git cherry-pick 624b4e2063 git cherry-pick 90883a366a git cherry-pick 85cef0af8c #<<<<< Note: conflicts git cherry-pick d73131cf0f git cherry-pick dd1f6ccc45 git cherry-pick 3a2ab1963a git cherry-pick efc17e79de git cherry-pick ccbe264a39 git cherry-pick 5ff27ef02a git cherry-pick 06269a3952 git cherry-pick dfeda9019c git cherry-pick 1b48054e1b git cherry-pick 3fe2c137ee git cherry-pick 6e04e36e3f git cherry-pick 58f4921686 git cherry-pick 57d6819212 git cherry-pick ebd220b073 git cherry-pick 38c3432393 git cherry-pick fe82fccf1a git cherry-pick 76a2a487a1 git cherry-pick 29b1106033 git cherry-pick ae3d73c981 git cherry-pick aec2389ad0 git cherry-pick bb43a0f133 git cherry-pick 0edb035808 git cherry-pick 3cb81cdde2 git cherry-pick e30618d055 git cherry-pick f06164ef8b git cherry-pick 24b72d2613 git cherry-pick 4538d31a8b git cherry-pick 53de2d8cb0 git cherry-pick ed250b88c3 git cherry-pick 79e50aeef3 git cherry-pick acb0df2280 git cherry-pick b29849a287 git cherry-pick afdab62f53 git cherry-pick 28ad6c3955 git cherry-pick 7e0d424934 git cherry-pick 4c6a6a37f7 git cherry-pick 01c7aaf6aa git cherry-pick c45cff60cf ``` </details> <details> <summary>Cherry-pick conflicts</summary> - 85cef0af8c #18989 this change is for enabling graph capture feature for JSEP, and it is done after ROCM EP enabled graph capture feature. However, the ROCM EP graph capture feature is not cherry-picked in rel-1.17.2. </details> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Jiajia Qin <jiajia.qin@intel.com> Co-authored-by: Xu Xing <xing.xu@intel.com> Co-authored-by: satyajandhyala <satya.k.jandhyala@gmail.com> Co-authored-by: Yang Gu <yang.gu@intel.com> Co-authored-by: Wanming Lin <wanming.lin@intel.com> Co-authored-by: Jiajie Hu <jiajie.hu@intel.com> Co-authored-by: Guenther Schmuelling <guschmue@microsoft.com> Co-authored-by: Matttttt <18152455+martholomew@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Segev Finer <segev208@gmail.com> Co-authored-by: Belem Zhang <belem.zhang@intel.com>
2024-03-29 20:13:39 +00:00
| HardSigmoid | ai.onnx(6+) | |
| If | ai.onnx(1-10,11-12,13-18,19+) | |
| InstanceNormalization | ai.onnx(6+); com.ms.internal.nhwc(6+) | |
| LayerNormalization | ai.onnx(17+) | |
| LeakyRelu | ai.onnx(6-15,16+) | |
| Less | ai.onnx(7-8,9-12,13+) | |
| LessOrEqual | ai.onnx(12-15,16+) | |
| Log | ai.onnx(6-12,13+) | |
| MatMul | ai.onnx(1-12,13+) | |
1.17.3 cherry-picks for ORT Web changes (#19926) ### Description This PR is a preview of cherry-picks for ort-web to `rel-1.17.3` based on `rel-1.17.2`. <details> <summary>Changes of ort-web to cherry-pick</summary> The following commits are from main branch. `o` stands for pick, and `x` stands for skip. ``` o 2e0a388c36 [js/webgpu] Add HardSigmoid support (#19215) o d226e40856 [js/webgpu] set query type in onRunStart (#19202) o 61610ff986 [js/webgpu] Add FusedConv clip test case (#18900) o a33b5bd1fa [JS/WebGPU] Added Uniforms to SkipLayerNorm. (#18788) o 591f90c0b9 [js/webgpu] Fix issue of timestamp query (#19258) o 7252c6e747 [WebNN EP] Support WebNN async API with Asyncify (#19145) o 5b06505073 [js/webgpu] Fix Tanh explosion (#19201) o 656ca66186 [js/webgpu] Support uniforms for conv, conv transpose, conv grouped (#18753) o a3f0e2422b [js/webgpu] Support f16 uniform (#19098) o 9e69606360 fix f16 for attention, enable slice and flatten for more types (#19262) o 624b4e2063 [js/webgpu] Remove enableShapesUniforms (#19279) o 90883a366a [js/webgpu] Add hardSigmoid activation for fusedConv (#19233) o 85cef0af8c [js/webgpu] Support capture and replay for jsep (#18989) o d73131cf0f [js/webgpu] Use DataType as uniform cpu type (#19281) o dd1f6ccc45 [js/webgpu] resolve codescan alert (#19343) o 3a2ab1963a [js/webgpu] Refactor createTensorShapeVariables (#18883) o efc17e79de [js/webgpu] Fix the undefined push error (#19366) x 50806a7dd5 [js/web] support external data in npm test (#19377) o ccbe264a39 [js/webgpu] Add LeakyRelu activation for fusedConv (#19369) o 5ff27ef02a [js/webgpu] support customop FastGelu (#19392) x 03be65e064 [js/web] fix types exports in package.json (#19458) o 06269a3952 [js/webgpu] allow uint8 tensors for webgpu (#19545) o dfeda9019c [JS/WebGPU] Add MatMulNBits (#19446) o 1b48054e1b [js/webgpu] Create Split indices helpers by rank, not by shape (#19554) o 3fe2c137ee [js] small fix to workaround formatter (#19400) x 70567a4b3a [js/web] use ApiTensor insteadof onnxjs Tensor in TensorResultValidator (#19358) o 6e04e36e3f [js/common] upgrade tsc in common from 4.9.5 to 5.2.2 (#19317) o 58f4921686 [js] changes to allow Float16Array if any polyfill is available (#19305) o 57d6819212 [js/web] Fix fused-conv is not included in npm test (#19581) o ebd220b073 Misspelling in README.md (#19433) o 38c3432393 Bump ip from 1.1.8 to 1.1.9 in /js/react_native (#19582) o fe82fccf1a [js/webgpu] Fix Conv2DTransposeMatMul f16 compilation failure (#19596) o 76a2a487a1 Bump ip from 1.1.8 to 1.1.9 in /js/react_native/e2e (#19583) o 29b1106033 [node] Switch to setImmediate to avoid starving the Node.js event loop (#19610) o ae3d73c981 [JS/WebGPU] Fix Split and Where to handle corner cases. (#19613) o aec2389ad0 [js/webgpu] allows a ProgramInfo's RunData to use zero sized output (#19614) o bb43a0f133 [js/webgpu] minor fixes to make tinyllama work (#19564) o 0edb035808 [js/web] fix suite test list for zero sized tensor (#19638) o 3cb81cdde2 [js/common] move 'env.wasm.trace' to 'env.trace' (#19617) o e30618d055 [js/webgpu] use Headless for webgpu test by default (#19702) o f06164ef8b [js/web] transfer input buffer back to caller thread (#19677) x a788514027 [js/web] dump debug logs for karma for diagnose purpose (#19785) o 24b72d2613 [JS/WebGPU] Preserve zero size input tensor dims. (#19737) o 4538d31a8b [js/webgpu] expose a few properties in WebGPU API (#19857) o 53de2d8cb0 [js/webgpu] Enable GroupedConvVectorize path (#19791) o ed250b88c3 [JS/WebGPU] Optimize MatMulNBits (#19852) x e771a763c3 [js/test] align web test runner flags with ort.env (#19790) o 79e50aeef3 [js/web] rewrite backend resolve to allow multiple EPs (#19735) o acb0df2280 Fix #19931 broken Get Started link of "ONNX Runtime JavaScript API" page (#19932) o b29849a287 [js/common] fix typedoc warnings (#19933) o afdab62f53 Bump follow-redirects from 1.15.4 to 1.15.6 in /js/web (#19949) o 28ad6c3955 Bump follow-redirects from 1.15.4 to 1.15.6 in /js/node (#19951) o 7e0d424934 accumulate in fp32 for Reduce* (#19868) o 4c6a6a37f7 [js/webgpu] Fix NAN caused by un-initialized buffer in instance-norm (#19387) o 01c7aaf6aa [js/webgpu] allow setting env.webgpu.adapter (#19940) o c45cff60cf [js/webgpu] fix maxpool / fp16 (#19981) ``` </details> <details> <summary>Cherry-pick commandlines</summary> ```sh git cherry-pick 2e0a388c36 git cherry-pick d226e40856 git cherry-pick 61610ff986 git cherry-pick a33b5bd1fa git cherry-pick 591f90c0b9 git cherry-pick 7252c6e747 git cherry-pick 5b06505073 git cherry-pick 656ca66186 git cherry-pick a3f0e2422b git cherry-pick 9e69606360 git cherry-pick 624b4e2063 git cherry-pick 90883a366a git cherry-pick 85cef0af8c #<<<<< Note: conflicts git cherry-pick d73131cf0f git cherry-pick dd1f6ccc45 git cherry-pick 3a2ab1963a git cherry-pick efc17e79de git cherry-pick ccbe264a39 git cherry-pick 5ff27ef02a git cherry-pick 06269a3952 git cherry-pick dfeda9019c git cherry-pick 1b48054e1b git cherry-pick 3fe2c137ee git cherry-pick 6e04e36e3f git cherry-pick 58f4921686 git cherry-pick 57d6819212 git cherry-pick ebd220b073 git cherry-pick 38c3432393 git cherry-pick fe82fccf1a git cherry-pick 76a2a487a1 git cherry-pick 29b1106033 git cherry-pick ae3d73c981 git cherry-pick aec2389ad0 git cherry-pick bb43a0f133 git cherry-pick 0edb035808 git cherry-pick 3cb81cdde2 git cherry-pick e30618d055 git cherry-pick f06164ef8b git cherry-pick 24b72d2613 git cherry-pick 4538d31a8b git cherry-pick 53de2d8cb0 git cherry-pick ed250b88c3 git cherry-pick 79e50aeef3 git cherry-pick acb0df2280 git cherry-pick b29849a287 git cherry-pick afdab62f53 git cherry-pick 28ad6c3955 git cherry-pick 7e0d424934 git cherry-pick 4c6a6a37f7 git cherry-pick 01c7aaf6aa git cherry-pick c45cff60cf ``` </details> <details> <summary>Cherry-pick conflicts</summary> - 85cef0af8c #18989 this change is for enabling graph capture feature for JSEP, and it is done after ROCM EP enabled graph capture feature. However, the ROCM EP graph capture feature is not cherry-picked in rel-1.17.2. </details> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Jiajia Qin <jiajia.qin@intel.com> Co-authored-by: Xu Xing <xing.xu@intel.com> Co-authored-by: satyajandhyala <satya.k.jandhyala@gmail.com> Co-authored-by: Yang Gu <yang.gu@intel.com> Co-authored-by: Wanming Lin <wanming.lin@intel.com> Co-authored-by: Jiajie Hu <jiajie.hu@intel.com> Co-authored-by: Guenther Schmuelling <guschmue@microsoft.com> Co-authored-by: Matttttt <18152455+martholomew@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Segev Finer <segev208@gmail.com> Co-authored-by: Belem Zhang <belem.zhang@intel.com>
2024-03-29 20:13:39 +00:00
| MatMulNBits | com.microsoft(1+) | |
Update XNNPACK to latest version (#18038) ### Description <!-- Describe your changes. --> Update XNNPACK to latest version - adds fp16 kernels and various other improvements - requires pthreadpool update as well Most code updates in the XNNPACK EP are to adjust to the new XNNPACK API - 'setup' is split into 'reshape' and 'setup' - some ops use a workspace buffer - copied workspace allocation from XNNPACK unit test code - some suffixes changed Added wrapper for XNNPACK caches to base XNNPACK EP kernel - simplifies usage - XNNPACK split out the code and weights caches, but the code cache isn't currently usable via the public API - we could use the internal types if we think it's required for performance reasons. non-trivial though as we'd need to propagate ifdef values from the XNNPACK build up to the ORT build. - using XNNPACK internals would also mean we would not be able to support using a pre-build XNNPACK package - not an issue currently Fixed opset registration for internal NHWC domain - was not being tied to the ONNX version, so nodes inserted by layout transformation had the incorrect opset - a number of other places needed updating once this issue was fixed Remove support for NCHW Resize from XNNPACK EP so it's NHWC only - we only supported NCHW for fp32, - doing so adds complexity in multiple places (XNNPACK EP kernel implementation, layout transformation and transpose optimization) - unclear if that complexity provides any benefit. can add back if required by production scenario ### Motivation and Context <!-- - Why is this change required? What problem does it solve? - If it fixes an open issue, please link to the issue here. --> We're looking at enabling fp16 support for CoreML and NNAPI. If we do that we need a good fallback story if the CPU EP will be used. The XNNPACK fp16 kernels will hopefully provide that. NOTE: This PR doesn't add fp16 support to the XNNPACK EP kernels. That can be done as required in separate EPs and should be relatively simple to do.
2023-11-03 16:04:28 +00:00
| MaxPool | ai.onnx(1-7,8-9,10,11,12+); com.ms.internal.nhwc(1-7,8-9,10,11,12+) | need perf optimization; need implementing activation |
| MemcpyFromHost | ai.onnx(1+) | |
| MemcpyToHost | ai.onnx(1+) | |
| Mul | ai.onnx(7-12,13,14+) | |
| MultiHeadAttention | com.microsoft(1+) | need implementing mask and past/present |
| Neg | ai.onnx(6-12,13+) | |
| Not | ai.onnx(1+) | |
| Pad | ai.onnx(2-10,11-12,13-17,18,19+) | |
| Pow | ai.onnx(7-11,12,13-14,15+) | |
| Range | ai.onnx(11+) | |
| Reciprocal | ai.onnx(6-12,13+) | |
| ReduceL1 | ai.onnx(1-10,11-12,13-17,18+) | |
| ReduceL2 | ai.onnx(1-10,11-12,13-17,18+) | |
| ReduceLogSum | ai.onnx(1-10,11-12,13-17,18+) | |
| ReduceLogSumExp | ai.onnx(1-10,11-12,13-17,18+) | |
| ReduceMax | ai.onnx(1-10,11,12,13-17,18+) | |
| ReduceMean | ai.onnx(1-10,11-12,13-17,18+) | |
| ReduceMin | ai.onnx(1-10,11,12,13-17,18+) | |
| ReduceProd | ai.onnx(1-10,11-12,13-17,18+) | |
| ReduceSum | ai.onnx(1-10,11-12,13+) | |
| ReduceSumSquare | ai.onnx(1-10,11-12,13-17,18+) | |
| Relu | ai.onnx(6-12,13,14+) | |
| Reshape | ai.onnx(5-12,13,14+) | no GPU kernel |
Update XNNPACK to latest version (#18038) ### Description <!-- Describe your changes. --> Update XNNPACK to latest version - adds fp16 kernels and various other improvements - requires pthreadpool update as well Most code updates in the XNNPACK EP are to adjust to the new XNNPACK API - 'setup' is split into 'reshape' and 'setup' - some ops use a workspace buffer - copied workspace allocation from XNNPACK unit test code - some suffixes changed Added wrapper for XNNPACK caches to base XNNPACK EP kernel - simplifies usage - XNNPACK split out the code and weights caches, but the code cache isn't currently usable via the public API - we could use the internal types if we think it's required for performance reasons. non-trivial though as we'd need to propagate ifdef values from the XNNPACK build up to the ORT build. - using XNNPACK internals would also mean we would not be able to support using a pre-build XNNPACK package - not an issue currently Fixed opset registration for internal NHWC domain - was not being tied to the ONNX version, so nodes inserted by layout transformation had the incorrect opset - a number of other places needed updating once this issue was fixed Remove support for NCHW Resize from XNNPACK EP so it's NHWC only - we only supported NCHW for fp32, - doing so adds complexity in multiple places (XNNPACK EP kernel implementation, layout transformation and transpose optimization) - unclear if that complexity provides any benefit. can add back if required by production scenario ### Motivation and Context <!-- - Why is this change required? What problem does it solve? - If it fixes an open issue, please link to the issue here. --> We're looking at enabling fp16 support for CoreML and NNAPI. If we do that we need a good fallback story if the CPU EP will be used. The XNNPACK fp16 kernels will hopefully provide that. NOTE: This PR doesn't add fp16 support to the XNNPACK EP kernels. That can be done as required in separate EPs and should be relatively simple to do.
2023-11-03 16:04:28 +00:00
| Resize | ai.onnx(10,11-12,13-17,18,19+); com.ms.internal.nhwc(10,11-12,13-17,18,19+) | CoordinateTransformMode align_corners is not supported with downsampling |
| Shape | ai.onnx(1-12,13-14,15+) | no GPU kernel; an ORT warning is generated - need to fix |
| Sigmoid | ai.onnx(6-12,13+) | |
| Sin | ai.onnx(7+) | |
| Sinh | ai.onnx(9+) | |
| SkipLayerNormalization | com.microsoft(1+) | |
| Slice | ai.onnx(1-9,10,11-12,13+) | |
| Softmax | ai.onnx(1-10,11-12,13+) | |
| Split | ai.onnx(1,2-10,11-12,13-17,18+) | |
| Sqrt | ai.onnx(6-12,13+) | |
[JS/WebGPU] Squeeze operator implementation (#16024) ### Description This PR adds an implementation of the `Squeeze` operator to WebGPU JSEP. The implementation follows the [operator schema](https://github.com/onnx/onnx/blob/main/docs/Operators.md#Squeeze) and allows one or two inputs. ### How was it tested 1. I created two models. Without `axes`: ```Python import onnx.helper node = onnx.helper.make_node( "Squeeze", inputs=["T"], outputs=["y"], ) graph = onnx.helper.make_graph([node], "test", [onnx.helper.make_tensor_value_info("T", 1, [3, 1, 4, 5])], [onnx.helper.make_tensor_value_info("y", 1, [3, 4, 5])]) onnx.save(onnx.helper.make_model(graph), "squeeze.onnx") ``` And with `axes`: ```Python import onnx.helper node = onnx.helper.make_node( "Squeeze", inputs=["T", "axes"], outputs=["y"], ) graph = onnx.helper.make_graph([node], "test", [onnx.helper.make_tensor_value_info("T", 1, [3, 1, 4, 5]), onnx.helper.make_tensor_value_info("axes", 7, [1])], [onnx.helper.make_tensor_value_info("y", 1, [3, 4, 5])]) onnx.save(onnx.helper.make_model(graph), "squeeze-dim.onnx") ``` 2. I compiled the runtime using @fs-eire's [instructions](https://gist.github.com/fs-eire/a55b2c7e10a6864b9602c279b8b75dce). 3. I ran the test models in the browser using this minimal setup: ```HTML <html> <script src=".\dist\ort.webgpu.min.js"></script> <script> async function run() { const session = await ort.InferenceSession.create('squeeze-dim.onnx', {executionProviders: ['webgpu']}); console.log(session); const input = new ort.Tensor('float32', new Float32Array(60), [3, 1, 4, 5]); const dim = new ort.Tensor('int64', [-3n], [1]); const output = await session.run({ "T": input, "axes": dim }); console.log(output); } run(); </script> </html> ``` ### Motivation and Context Improve operator coverage for WebGPU JSEP.
2023-05-26 22:53:05 +00:00
| Squeeze | ai.onnx(1-10,11-12,13+) | |
| Sub | ai.onnx(7-12,13,14+) | |
| Tan | ai.onnx(7+) | |
| Tanh | ai.onnx(6-12,13+) | |
| ThresholdedRelu | ai.onnx(10+) | |
| Tile | ai.onnx(6-12,13+) | |
| Transpose | ai.onnx(1-12,13+) | need perf optimization |
[JS/WebGPU] Unsqueeze operator implementation (#16138) ### Description This PR adds an implementation of the Squeeze operator to WebGPU JSEP. The implementation follows the [operator schema](https://github.com/onnx/onnx/blob/main/docs/Operators.md#Unsqueeze). To implement the `Unsqueeze` operator in the same fashion as the `Squeeze`, I added the `ComputeOutputShape()` method to the `UnsqueezeBase` class and made some slight modifications. Please let me know if it is a bad idea and if I should move this method to the JS implementation. I also uncommented test case lines in the `suite-test-list.jsonc` file for both Squeeze and Unsqueeze operators following @hariharans29's [comment](https://github.com/microsoft/onnxruntime/pull/16024#issuecomment-1565113633). ### How was it tested 1. I created a model with only one operator: ```Python import onnx.helper node = onnx.helper.make_node( "Unsqueeze", inputs=["T", "axes"], outputs=["y"], ) graph = onnx.helper.make_graph([node], "test", [onnx.helper.make_tensor_value_info("T", 1, [3, 4, 5]), onnx.helper.make_tensor_value_info("axes", 7, [2])], [onnx.helper.make_tensor_value_info("y", 1, [3, 1, 4, 5, 1])]) onnx.save(onnx.helper.make_model(graph), "unsqueeze.onnx") ``` 2. I compiled the runtime using @fs-eire's [instructions](https://gist.github.com/fs-eire/a55b2c7e10a6864b9602c279b8b75dce). 3. I ran the test models in the browser using this minimal setup: ```HTML <html> <script src=".\dist\ort.webgpu.min.js"></script> <script> async function run() { const session = await ort.InferenceSession.create('unsqueeze.onnx', {executionProviders: ['webgpu']}); console.log(session); const input = new ort.Tensor('float32', new Float32Array(60), [3, 4, 5]); const dim = new ort.Tensor('int64', [1n, 4n], [2]); const output = await session.run({ "T": input, "axes": dim }); console.log(output); } run(); </script> </html> ``` ### Motivation and Context Improve operator coverage for WebGPU JSEP.
2023-06-01 19:23:02 +00:00
| Unsqueeze | ai.onnx(1-10,11-12,13+) | |
| Where | ai.onnx(9-15,16+) | |