Commit ee02dab7 authored by Adam Rogowiec's avatar Adam Rogowiec Committed by Robert Kimball

Update ONNX support table. (#2464)

parent 90820076
......@@ -98,20 +98,22 @@ opset versions starting from `1` to `6` and to the latest opset version.
| Sum | 1-6-8- |
| Tan | 7- |
| Tanh | 1-6- |
| TopK | 1- |
| Transpose | 1- |
| Unsqueeze | 1- |
| Xor | 1-7- |
| Where | 9- |
## Unsupported Ops:
### Lack of support in nGraph
| Name | Opset supported | NGCORE | NGONNX | Comment |
|------|-----------------|--------|--------|---------|
| Erf | (9) | 284 | 442 | Maybe we may implement this as a simple closed interval integral? :) |
| Erf | (9) | 284 | 442 | Need separate kernel for this in nGraph core. |
| Pad | 1-2- | 273 | 416 | Not fully supported. |
| LSTM | 1-7- | | 430 | Not fully supported. |
| MaxUnpool | (9) | 286, 289 | 447 | |
| LpPool | - | 291 | 437 | Unsupported by nGraph - only max/avg pooling ops. |
| LpPool | - | 291 | 437 | Unsupported by nGraph - only max/avg pooling ops. Need separate kernel. |
| Multinomial | - | 199 | 435 | Lack of PRNG in nGraph. |
| RandomNormal | - | 199 | 434 | Lack of PRNG in nGraph. |
| RandomNormalLike | - | 199 | 434 | Lack of PRNG in nGraph. |
......@@ -139,7 +141,7 @@ opset versions starting from `1` to `6` and to the latest opset version.
| Gather | - | NGRAPH-3291 | 369, | Dynamic op. |
| Tile | - | NGRAPH-3292 | 368 | Dynamic op. |
| Upsample | (7) | 287 | 441 | Dynamic op. |
| MaxRoiPool | - | 288 | 437 | Dynamic op - need dynamic slicing. Beside just use _slice/op/concat_ pattern. |
| MaxRoiPool | - | 288 | 437 | Dynamic op - Need dynamic slicing. Beside just use _slice/op/concat_ pattern. |
| Reshape | 1-5- | NGRAPH-3290 | 357 | Lack of support for dynamic shape input. Only as a Constant or as an Initializer. |
| Scatter | (9) | 289 | 446 | Dynamic indices input. |
......@@ -153,5 +155,3 @@ opset versions starting from `1` to `6` and to the latest opset version.
| LpNormalization | - | | 436 | Just an equation. Only Lp{1,2} need to be supported. |
| InstanceNormalization | - | | 436 | Just an equation. For per channel computation may _slice/op/concat_ pattern need to be used. |
| Shrink | (9) | | 449 | Just an easy equation. |
| TopK | - | | 327. | Use nGraph `Topk`. |
| Where | (9) | | 448 | Use nGraph `Select`. |
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment