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
Since all the workloads are deployed through container, we need to launch nsight system within the container.
procedure is like
in the Dockerfile, add command to install cuda toolkit, nsight system and compute will be installed in the /usr/local/cuda-11.4 folder. RUN apt-get install -y cuda-toolkit-11-4
mount a host path to the application container for passing nsight report file. when use kubectl cp, sometimes cause EOF error and corrupted file cannot be open by nsight
Run the profiling nsys profile -o report --stats=true --force-overwrite true python XXX.py
If nsys is not found, you can use the complete path /usr/local/cuda-11.4/bin/nsys
Copy the report to the mount folder
SCP download the report.qdrep file to local machine with nsight GUI installed, and check out the timeline
Limitation is it cannot profile cross containers.
The text was updated successfully, but these errors were encountered:
Since all the workloads are deployed through container, we need to launch nsight system within the container.
procedure is like
RUN apt-get install -y cuda-toolkit-11-4
kubectl cp
, sometimes cause EOF error and corrupted file cannot be open by nsightnsys profile -o report --stats=true --force-overwrite true python XXX.py
If nsys is not found, you can use the complete path
/usr/local/cuda-11.4/bin/nsys
report.qdrep
file to local machine with nsight GUI installed, and check out the timelineLimitation is it cannot profile cross containers.
The text was updated successfully, but these errors were encountered: