* roi_align_9: ov_core, transformations, template_plugin * roi_align_9: CPU Plugin * keep only constructor with enums which is aligned with spec * remove evaluate function for ROIAlign_9 * Add op check test for operation ROIAlign-9 * Apply suggestions from code review * fix version name from 'v0' to 'v3' in transform part * use common shape_infer function for v3 and v9 * remove'tf_' prefix for ROIAlign::AlignedMode to avoid misleading for models from different platforms
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.