Update ie_api.pyx (#31)

Fix error: dldt/inference-engine/ie_bridges/python/inference_engine/ie_api.pyx:296:10: Signature not compatible with previous declaration
This commit is contained in:
Sergei Belousov 2018-11-22 21:01:04 +03:00 committed by openvino-pushbot
parent e607ee7021
commit 54eab18036
1 changed files with 2 additions and 2 deletions

View File

@ -293,7 +293,7 @@ cdef class IEPlugin:
version = bytes(self.impl.version)
return version.decode()
cpdef void add_cpu_extension(self, extension_path: str) except *:
cpdef void add_cpu_extension(self, str extension_path) except *:
if self.device.find("CPU") == -1:
raise RuntimeError("add_cpu_extension method applicable only for CPU or HETERO devices")
cdef string extension_str = extension_path.encode()
@ -371,4 +371,4 @@ cdef class BlobBuffer:
return precision_to_format[name].encode()
def to_numpy(self):
return np.asarray(self)
return np.asarray(self)