sgarizvi
sgarizvi

Reputation: 16806

Minimum Texture Size limit in CUDA

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

Answers (1)

harrism
harrism

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

Related Questions