Reputation: 113
I am executing a parallel computation on gpu via thrust. Is there a way to know how many cores I am using? Are all the available cores actually exploited for the computation?
Upvotes: 1
Views: 1003
Reputation: 2465
The visual profiler will give you a lot of detail about what's going on in your kernel, without the counters that it collects any guesses about occupancy are just that.
Upvotes: 1