2019-06-18 15:58:53 +00:00
# Hardware Enabled with OpenVINO Execution Provider
OpenVINO Execution Provider enables deep learning inference on Intel CPUs, Intel integrated GPUs and Intel< sup > ®</ sup > Movidius< sup > TM</ sup > Vision Processing Units (VPUs). Please refer to [this ](https://software.intel.com/en-us/openvino-toolkit/hardware ) page for details on the Intel hardware supported.
# ONNX Layers supported using OpenVINO
Below table shows the ONNX layers supported using OpenVINO Execution Provider and the mapping between ONNX layers and OpenVINO layers. The below table also lists the Intel hardware support for each of the layers. CPU refers to Intel< sup > ®< / sup >
Atom, Core, and Xeon processors. GPU refers to the Intel Integrated Graphics. VPU refers to USB based Intel< sup > ®< / sup > Movidius< sup > TM< / sup >
2019-07-19 07:52:15 +00:00
VPUs as well as Intel< sup > ®< / sup > Vision accelerator Design with Intel Movidius < sup > TM< / sup > MyriadX VPU.
2019-06-18 15:58:53 +00:00
2019-07-19 07:52:15 +00:00
| **ONNX Layers** | **OpenVINO Layers** | **CPU** | **GPU** | **VPU** |
2019-06-18 15:58:53 +00:00
| --- | --- | --- | --- | --- |
| Add | Eltwise (operation=sum) | Yes | Yes | Yes
| AveragePool | Pooling(pool\_method=avg) | Yes | Yes | Yes
| BatchNormalization | Scaleshift (can be fused into Convlution or Fully Connected) | Yes | Yes | Yes
| Concat | Concat | Yes | Yes | Yes
| Conv | Convolution | Yes | Yes | Yes
| Dropout | Ignored | Yes | Yes | Yes
| Flatten | Reshape | Yes | Yes | Yes
| Gemm | FullyConnected | Yes | Yes | Yes
| GlobalAveragePool | Pooling | Yes | Yes | Yes
| Identity | Ignored | Yes | Yes | Yes
| ImageScaler | ScaleShift | Yes | Yes | Yes
| LRN | Norm | Yes | Yes | Yes
| MatMul | FullyConnected | Yes | Yes* | No
| MaxPool | Pooling(pool\_method=max) | Yes | Yes | Yes
| Mul | Eltwise(operation=mul) | Yes | Yes | Yes
| Relu | ReLU | Yes | Yes | Yes
| Reshape | Reshape | Yes | Yes | Yes
| Softmax | SoftMax | Yes | Yes | Yes
| Sum | Eltwise(operation=sum) | Yes | Yes | Yes
| Transpose | Permute | Yes | Yes | Yes
| UnSqueeze | Reshape | Yes | Yes | Yes
| LeakyRelu | ReLU | Yes | Yes | Yes
2019-07-19 07:52:15 +00:00
*MatMul is supported in GPU only when the following layer is an Add layer in the topology.
2019-06-18 15:58:53 +00:00
# Topology Support
Below topologies are supported from ONNX open model zoo using OpenVINO Execution Provider
## Image Classification Networks
2019-07-19 07:52:15 +00:00
| **Topology** | **CPU** | **GPU** | **VPU** |
| --- | --- | --- | --- |
2019-06-18 15:58:53 +00:00
| bvlc\_alexnet | Yes | Yes | Yes
| bvlc\_googlenet | Yes | Yes | Yes
2019-07-19 07:52:15 +00:00
| bvlc\_reference\_caffenet | Yes | Yes | Yes
| bvlc\_reference\_rcnn\_ilsvrc13 | Yes | Yes | Yes
2019-06-18 15:58:53 +00:00
| densenet121 | Yes | Yes | Yes
2019-07-19 07:52:15 +00:00
| Inception\_v1 | Yes | Yes | Yes**
2019-06-18 15:58:53 +00:00
| Inception\_v2 | Yes | Yes | Yes
| Shufflenet | Yes | Yes | Yes
2019-07-19 07:52:15 +00:00
| Zfnet512 | Yes | Yes | Yes
2019-06-18 15:58:53 +00:00
| Squeeznet 1.1 | Yes | Yes | Yes
| Resnet18v1 | Yes | Yes | Yes
| Resnet34v1 | Yes | Yes | Yes
| Resnet50v1 | Yes | Yes | Yes
| Resnet101v1 | Yes | Yes | Yes
| Resnet152v1 | Yes | Yes | Yes
| Resnet18v2 | Yes | Yes | Yes
| Resnet34v2 | Yes | Yes | Yes
| Resnet50v2 | Yes | Yes | Yes
| Resnet101v2 | Yes | Yes | Yes
2019-07-19 07:52:15 +00:00
| Resnet152v2 | Yes | Yes | Yes
2019-06-18 15:58:53 +00:00
| Mobilenetv2 | Yes | Yes | Yes
| vgg16 | Yes | Yes | Yes
| vgg19 | Yes | Yes | Yes
2019-07-19 07:52:15 +00:00
2019-06-18 15:58:53 +00:00
## Image Recognition Networks
2019-07-19 07:52:15 +00:00
| **Topology** | **CPU** | **GPU** | **VPU** |
| --- | --- | --- | --- |
| MNIST | Yes | Yes | Yes**
**Inception_v1 and MNIST are supported in OpenVINO R1.1 and are not supported in OpenVINO R5.0.1.
2019-06-18 15:58:53 +00:00
## Object Detection Networks
2019-07-19 07:52:15 +00:00
| **Topology** | **CPU** | **GPU** | **VPU** |
| --- | --- | --- | --- |
2019-06-18 15:58:53 +00:00
|TinyYOLOv2 | Yes | Yes | Yes
2019-07-19 07:52:15 +00:00
| ResNet101\_DUC\_HDC | Yes | No | No
2019-06-18 15:58:53 +00:00
2019-08-05 22:28:46 +00:00
# Application code changes for VAD-M performance scaling
2019-06-18 15:58:53 +00:00
2019-08-05 22:28:46 +00:00
VAD-M has 8 VPUs and is suitable for applications that require multiple inferences to run in parallel. We use batching approach for performance scaling on VAD-M.
2019-06-18 15:58:53 +00:00
2019-07-19 07:52:15 +00:00
Below python code snippets provide sample classification code to batch input images, load a model and process the output results.
2019-06-18 15:58:53 +00:00
~~~
import onnxruntime as rt
from onnxruntime import get_device
import os
import os.path
import sys
import cv2
import numpy
import time
2019-07-19 07:52:15 +00:00
import glob
2019-06-18 15:58:53 +00:00
~~~
### Load the input onnx model
~~~
sess = rt.InferenceSession(str(sys.argv[1]))
print("\n")
~~~
### Preprocessing input images
~~~
for i in range(iters):
y = None
images = [cv2.imread(file) for file in glob.glob(str(sys.argv[2])+'/*.jpg')]
for img in images:
# resizing the image
2019-07-19 07:52:15 +00:00
img = cv2.resize(img, (224,224))
# convert image to numpy
x = numpy.asarray(img).astype(numpy.float32)
x = numpy.transpose(x, (2,0,1))
2019-06-18 15:58:53 +00:00
# expand the dimension and batch the images
2019-07-19 07:52:15 +00:00
x = numpy.expand_dims(x,axis=0)
if y is None:
y = x
else:
y = numpy.concatenate((y,x), axis=0)
2019-06-18 15:58:53 +00:00
~~~
2019-07-19 07:52:15 +00:00
### Start Inference
2019-06-18 15:58:53 +00:00
~~~
res = sess.run([sess.get_outputs()[0].name], {sess.get_inputs()[0].name: y})
~~~
### Post-processing output results
~~~
print("Output probabilities:")
i = 0
for k in range(batch_size):
for prob in res[0][k][0]:
print("%d : %7.4f" % (i, prob))
~~~