Add OpenVINO backend support (#148)

* Add OpenVINO backend support

* fix pybind

* fix python library path
This commit is contained in:
Jason
2022-08-24 16:22:38 +08:00
committed by GitHub
parent a1260d7937
commit cf4afa4220
20 changed files with 479 additions and 38 deletions

View File

@@ -76,6 +76,9 @@ class RuntimeOption:
def use_trt_backend(self):
return self._option.use_trt_backend()
def use_openvino_backend(self):
return self._option.use_openvino_backend()
def enable_paddle_mkldnn(self):
return self._option.enable_paddle_mkldnn()