I am currently working on an image processing application using OpenCV4Tegra on Jetson-TK1, and I currently lack informations about how much my GPU is used.
nvidia-smi does not seem to be available on tegra, and included softwares like tegrastats is just not precise enough.
Is there any solution that would help me monitor the load of my GPU ?
So, if Tegrastats is really a reliable tool, it means that the most efficient OpenCV4Tegra code never uses GPU, except for displaying. That seems to be kind of a huge waste, for a product like the Jetson-TK1, whose GPU sounds like quite a huge argument in order to use it.
I haven’t used OpenCV4Tegra yet, but I guess it depends whether the source code tells to specifically use the GPU using CUDA or not. If my memory serves me right, OpenCV4Tegra is a subset of OpenCV with special care for some process, with respect to the K1’s architecture.
So, I would guess that in order to use the GPU as a GPGPU, you would still have to write something special for the OpenCV code, such as gpu::the_opencv_method_you_want_to_use.
If anyone could correct me if I say something stupid that would be great. But I think that’s what is going on here.
IsidoreLechamalin did you look what is the CPU usage during your tests ? Maybe only the CPU is doing the work in your test.
Now if the code you tested is supposed to be highly relying on the GPU as we would like with the K1, maybe the process is not heavy enough to see significant use of the GPU.
You are right on the fact that to use GPU and CUDA, you have to use the ‘gpu’ namespace. :)
Actually I tested both CPU and GPU APIs, and I was really disappointed by the performance of the GPU one. So I used the CPU API, and realized it was way more efficient.
I had a way better framerate and almost no latency when making image processing on my video stream with OpenCV4Tegra’s CPU API.
I concluded that NVIdia worked a lot on optimizing the CPU API, and did not work at all on the GPU one. I wanted to check if the CPU API used the GPU, and that is why I created this thread, since I was a bit surprised that tegrastats indicated that the GPU was absolutely not used :)