Intel® Distribution of OpenVINO™ Toolkit
Community assistance about the Intel® Distribution of OpenVINO™ toolkit, OpenCV, and all aspects of computer vision-related on Intel® platforms.

How does OpenVINO work

Korolev__Roman
Beginner
419 Views

Hello everyone! I converted my SSD multibox detector from MxNet to IR and found that it works much faster on Intel CPU than just MxNet framework. And that's great! So I would like to have a primitive understanding of how it works. I mean maybe it has some highly optimized conv or pooling operations or something like that. Could anybody explain me in a couple of words? Thanks!

0 Kudos
1 Solution
Luis_at_Intel
Moderator
419 Views

Hi Korolev, Roman,

Thanks for reaching out. There are quite a few resources that could help understand how optimization works in OpenVINO. As described in the Model Optimizer Guide, there are a number of device-agnostic optimizations the tool performs. For example, certain primitives like linear operations (BatchNorm and ScaleShift), are automatically fused into convolutions. Generally, these layers should not be manifested in the resulting IR (as seen here).

You can find more information about device optimizations for the supported plugins in the Device-Specific Optimizations section of the Optimization Guide. Hope you have found this helpful.

 

Regards,

Luis

View solution in original post

0 Kudos
1 Reply
Luis_at_Intel
Moderator
420 Views

Hi Korolev, Roman,

Thanks for reaching out. There are quite a few resources that could help understand how optimization works in OpenVINO. As described in the Model Optimizer Guide, there are a number of device-agnostic optimizations the tool performs. For example, certain primitives like linear operations (BatchNorm and ScaleShift), are automatically fused into convolutions. Generally, these layers should not be manifested in the resulting IR (as seen here).

You can find more information about device optimizations for the supported plugins in the Device-Specific Optimizations section of the Optimization Guide. Hope you have found this helpful.

 

Regards,

Luis

0 Kudos
Reply