We know that for example modulo of power of two can be expressed like this:
x % 2 inpower n == x & (2 inpower n - 1).
Examples:
x % 2 == x & 1
x % 4 == x & 3
x % 8 == x & 7
What about general nonpower of two numbers?
Let's say:
x % 7==?
|
We know that for example modulo of power of two can be expressed like this:
Examples:
What about general nonpower of two numbers? Let's say: x % 7==? |
|||||||||||||||||||
|
|
First of all, it's actually not accurate to say that
Simple counterexample: With regards to bitwise optimization, only modulo powers of two can "easily" be done in bitwise arithmetics. Generally speaking, only modulo powers of base b can "easily" be done with base b representation of numbers. In base 10, for example, for non-negative References |
|||||||||
|
|
This only works for powers of two (and frequently only positive ones) because they have the unique property of having only one bit set to '1' in their binary representation. Because no other class of numbers shares this property, you can't create bitwise-and expressions for most modulus expressions. |
||||
|
|
This is specifically a special case because computers represent numbers in base 2. This is generalizable: (number)base % basex is equivilent to the last x digits of (number)base. |
||||
|
|
works perfectly in java.
both statements are the same. |
||||
|
|
|
There are moduli other than powers of 2 for which efficient algorithms exist. For example, if x is 32 bits unsigned int then x % 3 = popcnt (x & 0x55555555) - popcnt (x & 0xaaaaaaaa) |
|||
|
|
|
Not using the bitwise-and ( Suppose there were a value k such that |
|||
|
|
|
Using bitwise_and, bitwise_or, and bitwise_not you can modify any bit configurations to another bit configurations (i.e. these set of operators are "functionally complete"). However, for operations like modulus, the general formula would be necessarily be quite complicated, I wouldn't even bother trying to recreate it. |
|||
|
|
|
In this specific case (mod 7), we still can replace %7 with bitwise operators:
It works because 8%7 = 1. Obviously, this code is probably less efficient than a simple x%7, and certainly less readable. |
|||
|
|