I want to write a function that returns the nearest upper power of 2 number. For example if my input is 789, the output should be 1024. Is there any way of achieving this without using any loops but just using some bitwise operators?

link|improve this question

feedback

9 Answers

up vote 26 down vote accepted

Check the Bit twidding hacks. You need to get the base 2 logarithm, then add 1 to that.

link|improve this answer
feedback
unsigned long upper_power_of_two(unsigned long v)
{
    v--;
    v |= v >> 1;
    v |= v >> 2;
    v |= v >> 4;
    v |= v >> 8;
    v |= v >> 16;
    v++;
    return v;

}
link|improve this answer
4  
Would be nice if you have attributed it (unless you discovered it). It comes from the bit twiddling hacks page. – florin Jan 21 '09 at 17:47
Is that for a 32-bit number? Extension for 64-bit? – Jonathan Leffler Jan 21 '09 at 17:52
Jonathan, you need to do it for the upper half, and if that is zero, you do it for the lower half. – florin Jan 21 '09 at 18:03
2  
@florin, if v is a 64-bit type, couldn't you just add a "c |= v >> 32" after the one for 16? – Evan Teran Jan 21 '09 at 18:18
2  
show 3 more comments
feedback

next=pow(2, ceil(log(x)/log(2));

This works by finding the number you'd have raise 2 by to get x (take the log of the number, and divide by the log of the desired base, see wikipedia for more). Then round that up with ceil to get the nearest whole number power.

This is a more general purpose (i.e. slower!) method than the bitwise methods linked elsewhere, but good to know the maths, eh?

link|improve this answer
Don't see much that's a bitwise operator here... – Jonathan Leffler Jan 21 '09 at 17:50
in EXCEL you can directly get the dual log by using =LOG(A1,2), so the whole formula would be =2^CEILING(LOG(L11,2),1) – MikeD Jan 13 '10 at 16:05
From C99, you can also just use log2 if supported by your tools. GCC and VS don't seem to :( – Matthew Read Jan 22 at 5:49
feedback

The ultimate answer can be found at http://www.gamedev.net/community/forums/topic.asp?topic_id=229831

There are a few different ideas how to archive the desired result. Using loops, as in some of the examples here, is not at all necessary.

link|improve this answer
feedback

See here for possible solutions: http://graphics.stanford.edu/~seander/bithacks.html#RoundUpPowerOf2Float

link|improve this answer
feedback

If you need it for OpenGL related stuff:

/* Compute the nearest power of 2 number that is 
 * less than or equal to the value passed in. 
 */
static GLuint 
nearestPower( GLuint value )
{
    int i = 1;

    if (value == 0) return -1;      /* Error! */
    for (;;) {
         if (value == 1) return i;
         else if (value == 3) return i*4;
         value >>= 1; i *= 2;
    }
}
link|improve this answer
3  
'for' is a loop. – florin Jan 21 '09 at 17:46
florin: it is. and it is used as a loop here, isn't it? – DrJokepu Jan 21 '09 at 17:56
2  
DrJokepu - I think florin meant to say here that the OP asked for a loop-less solution – Eli Bendersky Nov 8 '09 at 5:56
feedback

By way of clarification, do you need the nearest power of 2 (ie. 65 would give you 64, but 100 would give you 128) or the nearest above (ie. 65 would give you 128, and so would 100)?

link|improve this answer
feedback

For IEEE floats you'd be able to do something like this.

int next_power_of_two(float a_F){
	int f = *(int*)&a_F;
	int b = f << 9 != 0; // If we're a power of two this is 0, otherwise this is 1

	f >>= 23; // remove factional part of floating point number
	f -= 127; // subtract 127 (the bias) from the exponent

	// adds one to the exponent if were not a power of two, 
	// then raises our new exponent to the power of two again.
	return (1 << (f + b)); 
}

If you need an integer solution and you're able to use inline assembly, BSR will give you the log2 of an integer on the x86. It counts how many right bits are set, which is exactly equal to the log2 of that number. Other processors have similar instructions (often), such as CLZ and depending on your compiler there might be an intrinsic available to do the work for you.

link|improve this answer
This is an interesting one eventhough not related to the question ( I want to roundoff only integers), will try out this one.. – Naveen Jan 21 '09 at 18:29
Came up with it after reading the wikipedia article on floats. Besides that, I've used it to calculate square-roots in integer precision. Also nice, but even more unrelated. – Jasper Bekkers Jan 21 '09 at 18:32
feedback

If you're using GCC, you might want to have a look at Optimizing the next_pow2() function by Lockless Inc.. This page describes a way to use built-in function builtin_clz() (count leading zero) and later use directly x86 (ia32) assembler instruction bsr (bit scan reverse) like describes in another answer link.

By the way, if you're not going to use assembler instruction and 64bit data type, you can use this

/**
 * return the smallest power of two value
 * greater than x
 *
 * Input range:  [2..2147483648]
 * Output range: [2..2147483648]
 *
 */
__attribute__ ((const))
static inline uint32_t p2(uint32_t x)
{
#if 0
    assert(x > 1);
    assert(x <= ((UINT32_MAX/2) + 1));
#endif

    return 1 << (32 - __builtin_clz (x - 1));
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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