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?
|
feedback
|
|
Check the Bit twidding hacks. You need to get the base 2 logarithm, then add 1 to that. | |||
|
feedback
|
| |||||||||||||||||
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? | |||||||
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. | ||||
|
feedback
|
|
See here for possible solutions: http://graphics.stanford.edu/~seander/bithacks.html#RoundUpPowerOf2Float | |||
|
feedback
|
|
If you need it for OpenGL related stuff:
| |||||||||||
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)? | |||
|
feedback
|
|
For IEEE floats you'd be able to do something like this.
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. | |||||
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 By the way, if you're not going to use assembler instruction and 64bit data type, you can use this
| |||
|
feedback
|