Questions tagged [multiqueue]

4 questions
0
votes
2 answers

Which RX queue will be bound to a specific CPU core?

I want to assign RX queues to cores mapping as 1:1. And I use the mlx5 nic. I want to make some different changes to the RX queue of each core. So I want to know the mapping between the index of RX queues and CPU cores. I have noted that there is a…
0
votes
1 answer

Does the vhost-user driver ensures the distribution of traffic between multiple RX queues?

I have a question for you. I know that vhost-user NICs can be configured with many RX/TX queues, but does the vhost-user driver ensures the distribution of traffic between RX queues? I used the sample application l3fdw to switch traffic between two…
0
votes
1 answer

How to configure gstreamer multiqueue to ensure that we grab the same number of frames from each source

We're trying to capture footage from multiple live cameras. We want to end up with a video for each camera where frame N from each video corresponds to the same moment in time (+/- a few milliseconds). From our understanding, multiqueue should do…
Steve Broberg
  • 4,255
  • 3
  • 28
  • 40
-1
votes
1 answer

TypeError: '>' not supported between instances of 'float' and 'Synchronized'

if math.fabs(time.time()-start_time) > time_interval : TypeError: '>' not supported between instances of 'float' and 'Synchronized' Code: if __name__ == "__main__": start_time = multiprocessing.Value( 'd', 0.0) time_t =…