You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My robot uses Lidar sensor with maximum data volume of 1080 points per repeat. In total I have 4320 points. The rest data is small enough to not consider them.
One environment step takes 0.14s, out of which ~0.06s is spent on filling protobuf message (Lidar data only) and 0.05s is spent on serialization of entire protobuf message.
It is required to test, whether the following algorithm is faster:
Make message to contain data per one repeat.
Fill, serialize, and send data in separate threads at each repeat.
In python, accumulate data over repeats to form data per step.
The expected improvement upper bound is that repeat_action times faster than current implementation.
The text was updated successfully, but these errors were encountered:
Consider default
repeat_action
= 4.My robot uses Lidar sensor with maximum data volume of 1080 points per repeat. In total I have 4320 points. The rest data is small enough to not consider them.
One environment step takes 0.14s, out of which ~0.06s is spent on filling protobuf message (Lidar data only) and 0.05s is spent on serialization of entire protobuf message.
It is required to test, whether the following algorithm is faster:
repeat
.repeats
to form data per step.The expected improvement upper bound is that
repeat_action
times faster than current implementation.The text was updated successfully, but these errors were encountered: