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

How do I add/subtract/multiply and divide integers using only 20 bits instead of 32 bits in C#?

Will these operations be faster than 32bit precision?

For example this .NET library is featuring 20 and 30 bit arithmetic with different speeds: http://complex-a5.ru/polyboolean/index.html

Thanks.

share|improve this question
7  
Can you tell us why you only want to use 20 bits? – Frank Bollack Aug 21 '10 at 11:24
I would have to suspect that they're putting some extra non-co-ordinate data in those spare bits. – cyborg Aug 23 '10 at 7:02
@Frank: the number of bits determines the precision of the operations. – Alberto Aug 30 '10 at 10:48
@cyborg: filling the remaining bits does not explain why 20bit operations are faster than 30bit ones. – Alberto Aug 30 '10 at 10:49

3 Answers

There are arithmetic units in processors so that it is really fast to do operations with 32bit numbers. It's faster than any code you can write because it is "wired" in processor.

Operations with 20bit number can be simulated with modulo arithmetic (i.e. mod 2^20).

share|improve this answer

How do I add/subtract/multiply and divide integers using only 20 bits instead of 32 bits in C#?

Use bitmasking to zero out the top 12 bits of 32-bit ints:

int twentyBitSum = (a + b) & 0xFFFFF;

Will these operations be faster than 32bit procision?

No. Doing arithmetic with a size your hardware doesn't natively support is extra work.

share|improve this answer

You can't, without writing your own code which will either do bit twiddling manually - or use 32 bit operations and then apply masking to limit the available range.

They certainly wouldn't be faster than 32-bit operations, as that's what the processor natively supports.

share|improve this answer
Why this .NET library is featuring 20 and 30 bit arithmetic with different speeds? complex-a5.ru/polyboolean/index.html – Alberto Aug 21 '10 at 11:35
@devdept: Please update your question to contain all the relevant information. Please don't add relevant facts in comments. – S.Lott Aug 21 '10 at 11:37
1  
@devdept: It depends on what custom operations they're performing, which look like they're pretty specialized. It's possible that by using a 20-bit coordinate system they can get more memory efficiency in some cases. But really you'd have to ask the authors. What are you trying to achieve though? – Jon Skeet Aug 21 '10 at 11:47
I understand the difference precision you can achieve working on 20bit or 30bit coordinate system but not why the latter should be faster using .NET... I simply trying to understand. – Alberto Aug 23 '10 at 6:57
@devdept: All the benchmarks show 20 bit being faster than 30 bit as far as I can see. – Jon Skeet Aug 23 '10 at 7:08

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.