vote up 3 vote down star

Hello

is there a fast algorithm, similar to power of 2, which can be used with 3, i.e. n%3. Perhaps something that uses the fact that if sum of digits is divisible by three, then the number is also divisible.

This leads to a next question. What is the fast way to add digits in a number? I.e. 37 -> 3 +7 -> 10 I am looking for something that does not have conditionals as those tend to inhibit vectorization

thanks

flag

64% accept rate
1  
Adding digits won't work in this case because you'd have to convert the number first to a decimal number which takes much more time than just dividing. – gs Nov 8 at 18:01
What are you actually trying to achieve? Unless it is some theoretical curiosity, I doubt this specific problem you have could be the bottleneck of a real world application... – Bruno Reis Nov 8 at 18:01
2  
it is both, practical and theoretical. the question arises from trying to distribute multiple nested loops over Cartesian centers among threads(Cuda specifically but it is not important).I already solved the problem in another way but still would like to know if there is a way. This is a real bottleneck since integer division and modulo are much more expensive than the actual floating-point operations I am trying to make parallel. – unknown (google) Nov 8 at 18:18

6 Answers

vote up 9 vote down check

4 % 3 == 1, so (4^k * a + b) % 3 == (a + b) % 3. You can use this fact to evaluate x%3 for a 32-bit x:

x = (x >> 16) + (x & 0xffff);
x = (x >> 10) + (x & 0x3ff);
x = (x >> 6) + (x & 0x3f);
x = (x >> 4) + (x & 0xf);
x = (x >> 2) + (x & 0x3);
x = (x >> 2) + (x & 0x3);
x = (x >> 2) + (x & 0x3);
if (x == 3) x = 0;

(Untested - you might need a few more reductions.) Is this faster than your hardware can do x%3? If it is, it probably isn't by much.

link|flag
vote up -1 vote down

I'm not sure what the performance would be like, but for your second question you could convert the number to a string, iterate the string and add ( - 48) to get the int value.

link|flag
vote up 1 vote down

Not sure for your first question, but for your second, you can take advantage of the % operator and integer division:

int num = 12345;
int sum = 0;
while (num) {
    sum += num % 10;
    num /= 10;
}

This works because 12345 % 10 = 5, 12345 / 10 = 1234 and keep going until num == 0

link|flag
+1 Nice #2. solution. – Kyle Rozendo Nov 8 at 18:21
1  
yes, it is that obvious solution. However division and modulo a very expensive operations, on the order of hundred of cycles on my platform. I am more interested in something that does not involve those. I have to say that this is a purely curiosity question. – unknown (google) Nov 8 at 18:28
vote up 2 vote down

This comp.compilers item has a specific recommendation for computing modulo 3.

An alternative, especially if the maximium size of the dividend is modest, is to multiply by the reciprocal of 3 as a fixed-point value, with enough bits of precision to handle the maximum size dividend to compute the quotient, and then subtract 3*quotient from the the dividend to get the remainder. All of these multiplies can be implemented with a fixed sequence of shifts-and-adds. The number of instructions will depend on the bit pattern of the reciprocal. This works pretty well when the dividend max is modest in size.

link|flag
vote up 0 vote down

thanks guys

Mr. Baxters Link to compiler newsgroup has a few algorithms which are useful for me

link|flag
vote up 0 vote down

The digital sum is most easily calculated as:

unsigned DigitalSum(unsigned x)
{
    unsigned sum = 0;
    while (x != 0)
    {
        sum += (x % 10);
        x /= 10;
    }
    return sum;
}

The only real way to improve this is lookup tables. If you want to limit the size of your lookup table, you can store say 0-999 in a lookup table and do this:

unsigned DigitalSum(unsigned x)
{
    unsigned sum = 0;
    while (x != 0)
    {
        sum += lookup[x % 1000];
        x /= 1000;
    }
    return sum;
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.