Lorenzo
Lorenzo

Reputation: 113

How many gpu cores is my program using?

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

Answers (1)

maxywb
maxywb

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

Related Questions