当前位置:七道奇文章资讯编程技术VC/C++编程
日期:2011-03-22 13:54:00  来源:本站整理

Vdsp(bf561)中的浮点运算(9):long double和float的对比[VC/C++编程]

赞助商链接



  本文“Vdsp(bf561)中的浮点运算(9):long double和float的对比[VC/C++编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:

在默许情形下,vdsp认为double和float这两种范例是一样的,因此我们对比long double和float.

1.1 范例表示

下面是两种范例的数据表示:

  float long double
字节数 4 8
标记位 1 1
指数位数 8 11
尾数位数 23 52
最小值 1.1754943508222875E-38F 2.2250738585072014E-308L
最大值 3.4028234663852886E+38F 1.797693134862315708E+308L
辨别率 1.1920928955078125E-07F 2.2204460492503131E-16L

1.2 正常情形下的运算效率

下表给出两种范例下做运算的效率对比,挑选High performance

  float long double
加减运算 132 cycle 166 cycle
乘法运算 92 cycle 179 cycle
除法运算 240 cycle 1506 cycle

狂汗,这个long double做除法也太狠了点!

下表给出两种范例下做运算的效率对比,挑选Strict IEEE:

  Float long double
加减运算 310 cycle 381 cycle
乘法运算 274 cycle 585 cycle
除法运算 497 cycle 1063 cycle

这里有一个值显得很奇特,在挑选了Strict IEEE选项之后,long double举行除法运算反而变快了!

在vdsp的文档里这样注释这两种差别的选项:

The -fast-fp (fast floating point) switch directs the compiler to link with the high-speed floating-point emulation library. This library relaxes some of the IEEE floating-point standard’s rules for checking inputs against not-a-number (NaN) and denormalized numbers to improve performance. This switch is enabled by default.

The -ieee-fp (slower floating point) switch directs the compiler to link with the fully-compliant floating-point emulation library. This library obeys all of the IEEE floating-point standard’s rules, and incurs a performance penalty when compared with the default floating-point emulation library.

照说利用Strict IEEE选项之后应当全部的计算都变慢,但long double的浮点除法仿佛是个例外!


  以上是“Vdsp(bf561)中的浮点运算(9):long double和float的对比[VC/C++编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
  • Vdsp(bf561)中的浮点运算(7):float乘法运算
  • Vdsp(bf561)中的浮点运算(8):float除法运算
  • Vdsp(bf561)中的浮点运算(9):long double和float的对比
  • <b>Vdsp(bf561)中的浮点运算(10):fract16范例表示</b>
  • Vdsp(bf561)中的浮点运算(11):fract16与float的转换
  • Vdsp(bf561)中的浮点运算(12):fract16加减运算
  • <b>Vdsp(bf561)中的浮点运算(13):fract16乘法运算</b>
  • <b>Vdsp(bf561)中的浮点运算(14):fract16除法</b>
  • Vdsp(bf561)中的浮点运算(15):vdsp库的一个BUG
  • Vdsp(bf561)中的浮点运算(16):fract2x16范例
  • Vdsp(bf561)中的浮点运算(3):FLT_MIN
  • <b>Vdsp(bf561)中的浮点运算(4):FLT_MAX</b>
  • 本文地址: 与您的QQ/BBS好友分享!
    • 好的评价 如果您觉得此文章好,就请您
        0%(0)
    • 差的评价 如果您觉得此文章差,就请您
        0%(0)

    文章评论评论内容只代表网友观点,与本站立场无关!

       评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
    Copyright © 2020-2022 www.xiamiku.com. All Rights Reserved .