Reputation: 16806
Is there any minimum size limit for 2D CUDA Textures?
I know there are maximum limits on Fermi (65535 x 65535) and G80 (65535 x 32768). But are there any minimum limits?
Upvotes: 1
Views: 530
Reputation: 27809
The minimum texture size is 1 texel: so 1 in each dimension of the texture. [1] for 1D, [1x1] for 2D, [1x1x1] for 3D.
Upvotes: 2