Is there a way to measure the CPU usage or the processor loading per simulation time step? I essentially want a way to compare the computational cost of different controller implementations
I reckon I can get an indication of CPU usage on my Mac's Activity Monitor, but was wondering if there's a better and more quantitative way
For context, I am simulating different kinds of controllers for a swarm robot system consisting of ~40 e-puck robots
webots --mode=fast --no-rendering --stderr --stdout --minimize --log-performance=perflog e-puck2.wbt &> log.txt &and also with perflog.txt... Could the redirection of terminal output to log.txt be causing any issues? – ssk255 Apr 17 '23 at 19:44webots --log-performance=/Users/username/Documents/perflog.txt? – Olivier Michel Apr 18 '23 at 06:45