CUDA Visual Profiler 'Interactive' X config option?

前端 未结 1 380
栀梦
栀梦 2020-12-16 23:14

I get the following warning when launching an application in computeprof on Ubuntu 11.04:

The selected counter(s) \"gld instructions 8bit\", \"gld ins

相关标签:
1条回答
  • 2020-12-17 00:16

    this option can be set in /etc/X11/xorg.conf. Just add Option "Interactive" "0" to the device section of your GPU. Here is what my device section looks like:

    Section "Device"
        Identifier     "Device0"
        Driver         "nvidia"
        VendorName     "NVIDIA Corporation"
        BoardName      "GeForce GTX 460"
        Option         "Interactive" "0"
    EndSection
    

    I run the same version of CUDA in ubuntu but I'm using OpenCL. Profiling with one of these instructions causes high CPU usage and never finishes (I have to kill the process) - even when interactive mode is disabled. Anyways, you can give it a try.

    Also make sure to verify the compute capability of your GPU and check if the requested count is supported : Visual Profiler User Guide. Although it seems that this is not the cause of you problem since it's working in OS X.

    0 讨论(0)
提交回复
热议问题