基于编译时元编程的定点算法。乘法溢出?

时间:2013-08-03 14:12:25

标签: c++ c++11 template-meta-programming fixed-point

我目前正在通过模板元编程实现编译时的3D栅格。

在实现代数基础(2d / 3d / 4d向量,3x3 / 4x4矩阵运算,aabb2d / 3d用于剔除等)之后,我注意到整数运算对于向量变换不够好。所以我开始编写一个定点实现:

该库有一个基本头,其中包含代数的常见元函数声明 类型将实现(提供统一的接口)。以下是定点实现使用的定义集:

template<typename T>
struct zero; //Gets the zero value of a type of data. For example, zero<std::integral_constant<int>> returns std::integral_constant<int,0>

template<typename T>
struct one;

/* Algebraic operations: */

template<typename LHS , typename RHS>
struct add;

template<typename LHS , typename RHS>
struct sub;

template<typename LHS , typename RHS>
struct mul;

我决定使用基于十进制的定点而不是基于二进制的,因为它允许我写一个十进制数字接口(下面提供的decimal别名)。 这是功率元函数和十进制数字移位的实现:

template<int base , int exponent>
struct positive_pow : public std::integral_constant<long long int , base * positive_pow<base,exponent-1>::value> {};

template<int base>
struct positive_pow<base,0> : public std::integral_constant<long long int,1> {};

template<int number , int shift>
struct decimal_leftshift : public std::integral_constant<long long int,number * positive_pow<10, shift>::value> {};

template<int number , int shift>
struct decimal_rightshift : public std::integral_constant<long long int,number / positive_pow<10, shift>::value> {};

template<bool CONDITION , int NUMBER , int SHIFT>
struct decimal_shift_chooser
{
    using shifter = decimal_leftshift<NUMBER,SHIFT>;
};

template<int NUMBER , int SHIFT>
struct decimal_shift_chooser<false,NUMBER,SHIFT>
{
    using shifter = decimal_rightshift<NUMBER,-SHIFT>;
};

//This metafunction shifts to one direction or other depending on the sign of the shift count passed:
template<int number , int shift>
struct decimal_shift
{
    using shifter = typename decimal_shift_chooser<( shift >= 0 ) , number , shift>::shifter;
    static const long long int value = shifter::value;
};  

这是定点类型的实现。内部实现使用long long来存储数字。所以我有64位,那就是 19位小数近似:

using fpbits = long long int;
using fdcount = unsigned int; //Fractional decimal digits count (Precision)

const fdcount DEFAULT_FRACTIONAL_PRECISION = 8; 

template<fpbits BITS , fdcount PRECISION = DEFAULT_FRACTIONAL_PRECISION>
struct fixed_point
{
    operator float()
    {
        return (float)BITS * std::pow(10.0f,-(float)PRECISION);
    };
};

//An alias to define decimal numbers with default precision:
template<int mantissa , int exponent = 0> // MANTISSA x 10^EXPONENT
using decimal = fixed_point<decimal_shift<mantissa , DEFAULT_FRACTIONAL_PRECISION + exponent>::value>; 

/* Previously defined common metafunctions implementation */

template<fpbits BITS , fdcount PRECISION>
struct zero<fixed_point<BITS,PRECISION>> : public fixed_point<0,PRECISION> {};

template<fpbits BITS , fdcount PRECISION>
struct one<fixed_point<BITS,PRECISION>> : public fixed_point<decimal_leftshift<1,PRECISION>::value,PRECISION> {};


template<fpbits BITS1 , fdbits BITS2 , fbcount PRECISION>
struct add<fixed_point<BITS1,PRECISION> , fixed_point<BITS2,PRECISION>> : public fixed_point<BITS1+BITS2 , PRECISION> {};

template<fpbits BITS1 , fdbits BITS2 , fbcount PRECISION>
struct sub<fixed_point<BITS1,PRECISION> , fixed_point<BITS2,PRECISION>> : public fixed_point<BITS1-BITS2 , PRECISION> {};

template<fpbits BITS1 , fdbits BITS2 , fbcount PRECISION>
struct mul<fixed_point<BITS1,PRECISION> , fixed_point<BITS2,PRECISION>> : public fixed_point<decimal_rightshift<BITS1*BITS2,PRECISION>::value , PRECISION> {};

正如我所指出的,实现有19位十进制数字。因此,如果我们使用 8位十进制数字并将pi乘以2,则可以表示结果,对吧? 就像在这个例子中一样:

using pi = decimal<3141592 , -6>; //3141592 x 10^-6 (3,141592) This fits in our 8 precision implementation.
using pi_2 = mul<pi,decimal<2>>; //pi*2 is 314159200 * 200000000 = 62831840000000000 >> 8. 
                                 //The inmediate result of the product fits in a 
                                 //long long (Has 17 decimal digits), so no problem?

int main()
{
    std::cout << "pi: " << pi() << std::endl;
    std::cout << "2*pi: " << pi_2() << std::endl;
}

但这会打印出来:

  pi:3,14159
    pi * 2:-1e-07

正如您所看到的,结果是一个非常小的负数,所以我认为计算中的任何地方都存在符号整数溢出。

问题出在哪里?这是一个整数溢出,如果它是真的,我在哪里以及如何解决它?

Here是一个完整的示例。

2 个答案:

答案 0 :(得分:4)

您的decimal_rightshift有一个int参数,您可以将BITS1*BIST2传递给它。用int替换元节目中的每个long long int,一切都应该有效。

答案 1 :(得分:1)

顺便说一下,您的one不正确。正确的实施是:

template<fpbits BITS , fbcount PRECISION>
struct one<fixed_point<BITS,PRECISION>> : public fixed_point<decimal_leftshift<1, PRECISION>::value, PRECISION> {};

即,假设one实际上应该是值1。