Profiled with nunit

In the past I’ve run specific NUnit tests w/in the visual profiler to profile various tests. After upgrading to CUDA 5.0 (from 4.3) I can no longer do that.

When I run my NUnit test w/in the visual profiler with a command such as:

C:\Program Files (x86)\NUnit 2.6.2\bin\nunit-console.exe /run:Performance.GPU.GpuPerfTest.GPU1DFFT Tests.dll

The test runs in the profiler but I now get the error:

“======== Warning: No CUDA application was profiled, exiting”

But I know via logging and debugging that the GPU is indeed computing the FFT.

How can I remedy this w/ CUDA 5.0 / Visual Profiler 5.0.0?

Thanks,

Paul

I resolved this issue by configuring my nunit-console.config file to use only .NET 4.0.

Paul