I'm currently working on an application that requires large amounts of variables to be stored and processed (~4gb in float)
Since precision of the individual variables are of less importance (I know that they'll be bounded), I saw that I could use OpenCL's half instead of floats, since that would really decrease the amount of memory.
My question is twofold.
Is there any performance hit to using half instead of float (I'd image graphics cards being built for float operations)
Is there a performance hit for mixing floats and half's in calculations? (i.e, a float times a half.)
Sincerily, Andreas Falkenstrøm Mieritz
halfwins overfloat-- if it does at all -- have to do with memory bandwidth and cache efficiency. Most hardware cannot computehalfresults faster thanfloat; they're just faster to move around. – willglynn Oct 16 '12 at 17:02