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:
parent
e607ee7021
commit
54eab18036
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue