SKIPPED: Sqlite does not contain GPU memory data

Platform: NVIDIA Jetson AGX Orin 64GB Developer Kit
OS: Ubuntu 20.04
CUDA Version: 11.4
NSYS Version: NVIDIA Nsight Systems version 2023.2.4.44-33011852v0

Hey, I’m following the course given here and I’m trying the analyze the memory performance of a CUDA code by using the “nsys” tool. I’m attaching the code (as a .txt file) I’m trying to analyze.
04-page-faults-solution-gpu-then-cpu.txt (499 Bytes)

In order to analyze the code I’m applying these steps:

nvcc -o page-faults 04-page-faults-solution-gpu-then-cpu.cu -run
nsys profile --force-overwrite=true --stats=true ./page-faults

And after running the line on the second line I get the following output
report-sqlite.txt (5.1 KB)

Thus I’m unable to see what’s going on the GPU memory at with nsys and with nsys-ui. Can you help me with this, thanks.

It turns out NVIDIA Jetson AGX Orin maintains a shared memory between CPU and GPU thus NVIDIA Nsight is unable to determine which usage belongs to which unit so it can’t prepare a report including those sections.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.