Reputation: 88
This issue relates to IR inferencing using OpenVINO on NCS2 (MYRIAD). The ONNX representation of the model I am trying to convert comprises 8 ScatterNDupdate layers, which OpenVINO doesn't support on NCS2.
Details:
OpenVINO version: 2022.1
ONNX Opset: 11 (tried on 13, not useful for resolving the issue)
Upvotes: 0
Views: 215
Reputation: 104
The ScatterNDUpdate layer is indeed unsupported for NCS2 since it is not listed in this Supported Layer here.
Your available option is to create a custom layer for VPU that could replace the ScatterNDUpdate functionality. To enable operations not supported by OpenVINO™ out of the box, you need a custom extension for Model Optimizer, a custom nGraph operation set, and a custom kernel for your target device
You may refer to this guide.
Upvotes: 1