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
Based on the profiling results shown above, some of the most time-consuming operations in our control loop (the callback function for IIWA_STATUS) are accessing, decoding and casting fields in the configuration YAML node. The Step function only gets two samples whereas the YAML functions combined get more than 100. It might be worthwhile to decode the necessary fields once in the constructor and store the values as private fields of IiwaPlanManager.
The text was updated successfully, but these errors were encountered:
Based on the profiling results shown above, some of the most time-consuming operations in our control loop (the callback function for IIWA_STATUS) are accessing, decoding and casting fields in the configuration YAML node. The
Step
function only gets two samples whereas the YAML functions combined get more than 100. It might be worthwhile to decode the necessary fields once in the constructor and store the values as private fields ofIiwaPlanManager
.The text was updated successfully, but these errors were encountered: