。I am using following command for this

nvprof  python ass2.py

程序运行成功,但最后显示以下错误。
==49791== Profiling application: python ass2.py
======== Error: Unable to import nvprof generated profile data.

最佳答案

使用/usr/local/cuda/bin/nvprof xxx,可能您已经安装了两个版本的cuda
或者
您可以将/usr/local/cuda/bin添加到PATH环境中。

vim ~/.bashrc
export PATH=$PATH:/usr/local/cuda/bin
source ~/.bashrc

关于python - 无法导入nvprof生成的配置文件数据,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42124029/

10-15 12:39