openvino/docs/template_plugin
Tomasz Jankowski e24a5b8ac3
[ONNX FE] Extend ONNX FE for operation GenerateProposals (#12510)
* Create ONNX FrontEnd GenerateProposals op

* Add onnx GP Op validation

* Add batch 2 test

* Improve code readability

.. per review comments

* Fix test model paths

* Use heterogeneous test values
2022-08-18 09:26:48 +00:00
..
backend [ONNX FE] Extend ONNX FE for operation GenerateProposals (#12510) 2022-08-18 09:26:48 +00:00
include/template Update year to 2022 in copyright notice (#9755) 2022-01-19 01:07:49 +03:00
src Fixed newAPI for case if core was removed (#12207) 2022-07-22 16:46:08 +03:00
tests/functional API Conformance report: C++ & Merge XML Part (#11245) 2022-08-15 18:57:10 +04:00
CMakeLists.txt Debian packages: base version (#11387) 2022-07-19 09:07:26 +03:00
README.md Fixed comments after #11155 (#11202) 2022-03-25 16:02:18 +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 -DENABLE_TEMPLATE_REGISTRATION=ON ..
$ make -j8

ENABLE_TEMPLATE_REGISTRATION cmake options registers the plugin in plugin.xml configuration file and enables install target for the plugin.