I need to do some modular arithmetic in my shader. Suppose int a, b both range from 0 to 2^16, does a%b have a precision problem on GPU? If so, how to optimize it to improve the precision?
Since you say a and b are integers, why should there be a problem if the GPU supports integer operations (which every GL3/DX10 hardware does)? If it doesn't then it most probably at least supports IEEE single-precision floats, which can represent any integer < 2^24 pretty well. – Christian RauJan 28 at 10:03
aandbare integers, why should there be a problem if the GPU supports integer operations (which every GL3/DX10 hardware does)? If it doesn't then it most probably at least supports IEEE single-precision floats, which can represent any integer < 2^24 pretty well. – Christian Rau Jan 28 at 10:03