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

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?

Any suggestion will be appreciated =)

share|improve this question
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 Rau Jan 28 at 10:03

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.