* Added template for new tests * Fixed simple test * Added output tests * Removed get_result/get_parameter methods * Fixed documentation * Fixed functional tests * Fixed caching tests * Added new test for import * Added new tests * Fixed code style * Fixed comments * Fixed tests * Fixed code style * Save version in the function Fixed pre-post processing * Change IR version * Fixed documentation * Fixed MockICore * HETERO almost works * Fixed tests and core logic * Disabled some CPU tests * Tmp disable fp16 for template * Fixed tests and clang-format * Small fixes * Fix * Simplified code in templatePlugin * Added IE precisions checks * Simplified hetero plugin * Added ieImportExportedFunction test * Added MYRIAD test * Skip tests directly in tests * More correct filter for CPU * Fixed CPU tests * Template plugin tests * Some comments * FIxed clanf-format * Removed myriad tests * Fixed comment * small changes * Fixed condition * Fixed unit tests * clang-format * Comment * Hetero plugin update * Fixed tests * Moved re-create under ig * Fixed clang-format * Fixed some caching_tests * Disable some caching_tests * Fixed setLayout with dynamic case * Fixed clang-format * Disable execution graph * Disabled one more CPU test * Simplified regex * Disabled GNA tests Co-authored-by: y <ilya.lavrenov@intel.com> |
||
|---|---|---|
| .. | ||
| include/template | ||
| src | ||
| tests/functional | ||
| CMakeLists.txt | ||
| README.md | ||
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