Recently, I am reading the book 'Programming Massively Parallel processors'. One of the reading exercise in chapter 3 ask me to detect which assignment for SM is possible. The problem looks like below
Indicate which of the following assignments per multiprocessor is possible:
- 8 blocks with 128 threads each on a device with compute capability 1.0.
- 8 blocks with 128 threads each on a device with compute capability 1.2.
- 8 blocks with 128 threads each on a device with compute capability 3.0.
- 16 blocks with 64 threads each on a device with compute capability 1.0.
- 16 blocks with 64 threads each on a device with compute capability 1.2.
- 16 blocks with 64 threads each on a device with compute capability 3.0.
From the most recent CUDA programming guild, I only find the specification for compute capability 3.0 whose allows up to 16 blocks and 2048 threads per SM and up 1024 threads per block. Unfortunately, I did not find any information related to compute capability 1.0.
Can anyone tell me where to find the block specification for compute capability 1.0? Thank you very much