Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there anything as half precision floating points in CUDA?

Background: I want to manipulate an opengl texture using glTexSubImage3D with data from a PBO which I generate using CUDA. The texture is stored in GL_INTENSITY16 format (which is a half precision floating type afaik) and I dont want to use glPixelTransferf(GL_x_SCALE,...) to scale from interger values since it seems to be much faster without the scaling.

Any advice?

share|improve this question

1 Answer

up vote 5 down vote accepted

CUDA only natively supports 32 and 64 bit floating precision types.

Both driver and runtime APIs support binding to half float textures, but the resulting read inside the kernel will return the value promoted to a 32 bit floating point number. The CUDA standard libraries include __half2float() and __float2half_rn() functions for converting between half and single precision floating point types (the half float stored in a 16 bit integer). So it might be possible to do the manipulation in 32 bit precision kernels with reads and writes done using 16 bit types. But for native 16 bit floating point, I think you are out of luck.

share|improve this answer
cheers, i think i will go with 32bit floats and do it in some other way... – Dirk Jul 27 '11 at 15:07
4  
Storing half-precision in the textures WILL save you bandwidth, even if the computation is full 32-bit. So if your app is bandwidth bound at all, it might be worth it. – harrism Jul 28 '11 at 2:13
(-1) _half2float _IS "native support." The point is that __half2float is an intrinsic (single-cycle, I'm pretty sure), while in SSE it requires many instructions to do right. The fact that ALU is 32bit doesn't matter, halfs let you save memory and memory bandwidth. – Aleksandr Dubinsky Feb 12 at 17:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.