openvino/docs/template_plugin
Ilya Churaev b5dbabe41d
Fixed registration of template plugin (#11155)
* Fixed registration of template plugin

* Added option for template plugin

* Fixed static build
2022-03-24 14:39:20 +03:00
..
backend Add ReadValue and Assign to template plugin tests (#9132) 2022-03-18 07:13:40 +00:00
include/template Update year to 2022 in copyright notice (#9755) 2022-01-19 01:07:49 +03:00
src Fixed registration of template plugin (#11155) 2022-03-24 14:39:20 +03:00
tests/functional Add ReadValue and Assign to template plugin tests (#9132) 2022-03-18 07:13:40 +00:00
CMakeLists.txt Fixed registration of template plugin (#11155) 2022-03-24 14:39:20 +03:00
README.md Fixed registration of template plugin (#11155) 2022-03-24 14:39:20 +03:00

README.md

OpenVINO Template Plugin

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

How to build

$ cd <openvino_dir>
$ mkdir <openvino_dir>/build
$ cd <openvino_dir>/build
$ cmake -DENABLE_TESTS=ON -DENABLE_FUNCTIONAL_TESTS=ON ..
$ make -j8
$ cd <template_plugin_dir>
$ mkdir <template_plugin_dir>/build
$ cd <template_plugin_dir>/build
$ cmake -DOpenVINODeveloperPackage_DIR=<openvino_dir>/build ..
$ make -j8