-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Activating CUDA #6302
Comments
CUDA support can be enabled with a CMake flag called BUILD_WITH_CUDA, which is set to False by default. CUDA support can be enabled from within a CMake build instruction for the Librealsense SDK using a build instruction similar to the one below: cmake ../ -DCMAKE_BUILD_TYPE=Release -DBUILD_EXAMPLES=true -DBUILD_GRAPHICAL_EXAMPLES=true -DBUILD_WITH_CUDA=true An easy way to check whether the effect of CUDA support is being applied is to check CPU usage. There should be a clear reduction in CPU % usage with CUDA support enabled, as highlighted by the example chart below: |
Hi MartyG, |
Hi @brsbilgin |
Thank you Dorodnic |
| Camera Model | D435 |
| Firmware Version | 05.12.03.00 |
| Operating System & Version | Linux (Ubuntu 18.04) |
| Kernel Version (Linux Only) | 4.9.140-tegra |
| Platform | NVIDIA Jetson |
| SDK Version | 2.32.1 |
For activating CUDA cores should I build from sources with correct flags or it is enough install from debian packages? How can I evaluate it is using CUDA cores or not?
The text was updated successfully, but these errors were encountered: