Commit 54eab180 authored by Sergei Belousov's avatar Sergei Belousov Committed by openvino-pushbot

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
parent e607ee70
......@@ -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)
\ No newline at end of file
return np.asarray(self)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment