Coder Social home page Coder Social logo

fixedpointnumberlibrary's Introduction

CW-B-W's GitHub stats
Top Langs

fixedpointnumberlibrary's People

Contributors

cw-b-w avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

fixedpointnumberlibrary's Issues

No rounding when multiplying

Inside

template<int INT_BIT_LEN, int FRAC_BIT_LEN>
template<int T1, int T2>
FixedPointNumber<INT_BIT_LEN, FRAC_BIT_LEN> FixedPointNumber<INT_BIT_LEN, FRAC_BIT_LEN>::operator* (const FixedPointNumber<T1, T2> &rhs) const

The bits behind LSB are discarded, but it's better to round it to LSB.

FixedPointNumber res;
uint64_t product = lv * rv;
product >>= T2; // No rounding here

to_double(): Is using bit-operation really faster

234b58d

Originally, only one main instruction. This may be faster on modern CPU even if it's floating point number multiplication.

d /= (double)(1ULL << FRAC_BIT_LEN);

Beside, bit-operation method uses a while-loop, it may be a bigger burden than floating point number multiplication.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.