diff options
| author | Yeoh Ee Peng <ee.peng.yeoh@intel.com> | 2019-12-04 11:17:42 +0800 |
|---|---|---|
| committer | Anuj Mittal <anuj.mittal@intel.com> | 2019-12-10 13:31:24 +0800 |
| commit | 1e514838dfad1d2339f896f850425bc33621d297 (patch) | |
| tree | f93a016de883f4af953592e7c635cae6e6f56308 /lib/oeqa/runtime/miutils/targets | |
| parent | f39ad91524768c729cd68ce367dacf9b4dfc4cf7 (diff) | |
| download | meta-intel-1e514838dfad1d2339f896f850425bc33621d297.tar.gz | |
oeqa/runtime/cases/dldt: Enable inference engine and model optimizer tests
Add sanity tests for inference engine:
- test inference engine c/cpp shared library
- test inference engine python api
- test inference engine cpu, gpu, myriad plugin
Add sanity tests for model optimizer
- test model optmizer can generate ir
Licenses:
- classification_sample.py
license: Apache 2.0
source: <install_root>/deployment_tools/inference_engine/samples/*
Signed-off-by: Yeoh Ee Peng <ee.peng.yeoh@intel.com>
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Diffstat (limited to 'lib/oeqa/runtime/miutils/targets')
| -rw-r--r-- | lib/oeqa/runtime/miutils/targets/oeqatarget.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/oeqa/runtime/miutils/targets/oeqatarget.py b/lib/oeqa/runtime/miutils/targets/oeqatarget.py new file mode 100644 index 00000000..a9f7f1b4 --- /dev/null +++ b/lib/oeqa/runtime/miutils/targets/oeqatarget.py | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | |||
| 2 | class OEQATarget(object): | ||
| 3 | |||
| 4 | def __init__(self, target): | ||
| 5 | self.target = target | ||
| 6 | |||
| 7 | def run(self, cmd): | ||
| 8 | return self.target.run(cmd) | ||
| 9 | |||
| 10 | def copy_to(self, source, destination_dir): | ||
| 11 | self.target.copyTo(source, destination_dir) | ||
