Fix error: dldt/inference-engine/ie_bridges/python/inference_engine/ie_api.pyx:296:10: Signature not compatible with previous declaration
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()
return precision_to_format[name].encode()
def to_numpy(self):
- return np.asarray(self)
\ No newline at end of file
+ return np.asarray(self)