mirror of
git://git.yoctoproject.org/meta-intel.git
synced 2025-07-19 12:59:03 +02:00

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>
12 lines
251 B
Python
12 lines
251 B
Python
|
|
class OEQATarget(object):
|
|
|
|
def __init__(self, target):
|
|
self.target = target
|
|
|
|
def run(self, cmd):
|
|
return self.target.run(cmd)
|
|
|
|
def copy_to(self, source, destination_dir):
|
|
self.target.copyTo(source, destination_dir)
|