openvino/docs/template_plugin
Ilya Lavrenov a0ce93639d
Fixed klockwork issue (#5898)
2021-05-31 13:21:20 +03:00
..
include/template Align copyright notice in cpp and cmake source files (CVS-51320) (#4950) 2021-03-25 02:40:09 +03:00
src Fixed klockwork issue (#5898) 2021-05-31 13:21:20 +03:00
tests/functional Tests for dynamic preprocessing in SetBlob (#5798) 2021-05-26 18:07:08 +03:00
CMakeLists.txt Align copyright notice in cpp and cmake source files (CVS-51320) (#4950) 2021-03-25 02:40:09 +03:00
README.md Template documentation update (#1519) 2020-07-29 19:56:24 +03:00

README.md

template-plugin

Template Plugin for Inference Engine which demonstrates basics of how Inference Engine plugin can be built and implemented on top of Inference Engine Developer Package and Plugin API. As a backend for actual computations ngraph reference implementations is used, so the Template plugin is fully functional.

How to build

$ cd $DLDT_HOME
$ mkdir $DLDT_HOME/build
$ cd $DLDT_HOME/build
$ cmake -DENABLE_TESTS=ON -DENABLE_FUNCTIONAL_TESTS=ON ..
$ make -j8
$ cd $TEMPLATE_PLUGIN_HOME
$ mkdir $TEMPLATE_PLUGIN_HOME/build
$ cd $TEMPLATE_PLUGIN_HOME/build
$ cmake -DInferenceEngineDeveloperPackage_DIR=$DLDT_HOME/build ..
$ make -j8