Explorar el Código

extended integer math with log2(uint8_t)

tagfs
Ludovic 'Archivist' Lagouardette hace 3 años
padre
commit
4423a883e9
Se han modificado 1 ficheros con 15 adiciones y 0 borrados
  1. +15
    -0
      include/gp/math/integer_math.hpp

+ 15
- 0
include/gp/math/integer_math.hpp Ver fichero

@ -13,6 +13,21 @@ namespace gp {
Sean Eron Anderson
seander@cs.stanford.edu
**/
template<>
constexpr size_t log2<uint8_t>(uint8_t v)
{
constexpr int MultiplyDeBruijnBitPosition[8] =
{
0, 5, 1, 6, 4, 3, 2, 7
};
v |= v >> 1;
v |= v >> 2;
v |= v >> 4;
return MultiplyDeBruijnBitPosition[(v * 29U) >> 5];
}
template<>
constexpr size_t log2<uint32_t>(uint32_t v)
{

Cargando…
Cancelar
Guardar