Barjavel
Barjavel

Reputation: 1636

Is the CUDA Occupancy Calculator provided by NVIDIA out of date?

The CUDA Wikipedia page lists the "Maximum number of threads per block" as 1024 for compute capability 2.x.

Is this information incorrect as I have read elsewhere that 512 is always the max number of threads per block? Also the CUDA occupancy calculator won't allow more than 512 for the "Threads Per Block" setting.

Edit: The Occupancy Calculator I was looking at was out of date. The newest version can be found on this page.

Upvotes: 1

Views: 845

Answers (2)

maxywb
maxywb

Reputation: 2475

http://developer.download.nvidia.com/compute/DevZone/docs/html/C/tools/CUDA_Occupancy_Calculator.xls

Here is a direct link to save you the effort.

Upvotes: 0

Patrick87
Patrick87

Reputation: 28302

There is a newer version available. Go to the CUDA 4.0 download page, and select "Documentation". Scroll down to find the CUDA Occupancy Calculator v. 2.4 (yours is 2.1, right?)

Upvotes: 4

Related Questions