I am running the code very similar to the following example on our camera backend. from threading import Thread import time import numpy as np from functools import partial from hailo_platform import VDevice, HailoSchedulingAlgorithm, FormatType, pyhailort import os import multiprocessing number_of_frames = 1000000 timeout_ms = 10000 os.environ['HAILO_MONITOR'] = '1' def example_callback(completion_info, bindings=None, start_time=None): end_time = time.monotonic() def infer(should_use_mu...