-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Very high cpu usage with R2300 #63
Comments
Hello Arthav, I'm having a i5-8350U here. Even if I start the driver in a virtual machine, I don't get such a high CPU usage. If you are only using one layer, you could disable the unused ones. This can be done via dynamic_reconfigure of ROS, or directly via http (example): http:///cmd/set_parameter?layer_enable=on,off,off,off |
Hey, |
@Arthav24 are you using the binaries or you have build the repo from source? If you are building from source, please build it in debug mode
and use
So the node in the launch file would look something like
Please report here what is the log output from |
memleak_old_4tf.log Please find the attached logs. memleak_latest_4tf.log - main branch and enabled all the tfs in launch file ( ring1/2/3/4 ) |
The logs don't seem to be alarming. I will do a test with
and then we can compare the logs maybe |
hey @ipa-hsd any update from your test ? |
@Arthav24 when I compile the latest
the CPU usage fluctuates between 30-60%. Not as high as you reported, but it can be improved maybe. By compiling with How long did you run the driver after which you noticed the high CPU usage? Or it's the case since the beginning? |
I just realized you mentioned that you are working with version 1.1.1, but we fixed some issues with the low frequency after the release: https://github.com/PepperlFuchs/pf_lidar_ros_driver/commits/main. Could you try pulling in the latest |
yeah, but for me the CPU usage was always >60%. When I was using the driver in my stack then I had BUILD_TYPE=Release but had similar results. yes, I did check the latest commits in main branch for fixing frequency and accumulation. and tried but saw similar results. This too was build with Release option. |
Can you try with
and share the log? |
I had another look at the |
@Arthav24 could you please try #65? For me the consumption has come down from 30-60% to less than 10%. This is the log file after the fix: callgrind_fix.log. I have marked the PR with [WIP] because there might be some possibility to improve it slightly more. |
Sorry for the delayed response, I see you have come up with an amazing solution which I will definitely give a try and report back. Definitely, I think it could be improved because I have also used R2000 but a different driver and for that, I never saw usage >5%. |
@Arthav24 any updates? |
Again sorry for the delayed response,
Once again thanks @konu-droid for running all the tests. |
Thanks for the detailed analysis!
here you mean?
Maybe the sleep was not required in that loop in the 1st place. I will revert it back.
That seems strange. But in any case, I should introduce a conditional variable which wakes up the reader thread only when there is data available.
That sounds more like a memory leak (?) |
Exactly this. I also thought that sleep is not required but cutting it half brought the frequencies back to expected so didn't try removing it completely. |
Below is the section that is most likely culprit of this. pf_lidar_ros_driver/pf_driver/src/ros/scan_publisher.cpp Lines 139 to 152 in 1e14af5
|
Pushed new changes to #65 which maintains the frequency as expected. Also, the consumption is around 10-15% in case of all layers enabled and 5-8% in case of only one layer enabled. The memory leak is currently fixed by resetting the cloud message when the scan parameters change (e.g. if |
I am using R2300 with intel i5-6500TE. At the htop I can see pf driver consuming almost 80-90% CPU. Does anyone facing the same because I haven't modified the driver. Please guide me on how to debug the cause. Just launching the r2300.launch increases this much CPU usage. Not even launching the data processing node.
High CPU usage causing computational bottlenecks with my usage so looking forward to reducing it to considerable levels.
System details: Ubuntu 18.04, ROS melodic, driver v1.1.1
also since I am for now using only one of the planes out of four is there any way to optimize in terms of reducing load and data.
The text was updated successfully, but these errors were encountered: