Git Product home page Git Product logo

Comments (4)

Burtan avatar Burtan commented on September 26, 2024 1

Float behaving as Double in KotlinJS is discussed here.
https://youtrack.jetbrains.com/issue/KT-24975/Enforce-range-of-Float-type-in-JS

from kotlinx-io.

fzhinkin avatar fzhinkin commented on September 26, 2024

As writeFloat/readFloat documentation stated, these functions use Float.toBits and Float.fromBits to serialize floats to bitstream and back.
On JS, Floats have a wider range (as they are backed by Number, which is an IEEE 745 double-prevision 64-bit floating point number), so Float.toBits may produce numbers that are not equal to initial values (see docs).

The only thing we can improve here is stressing this peculiarity in docs.

from kotlinx-io.

Burtan avatar Burtan commented on September 26, 2024

Thanks for the clarification. As there is also writeDouble/readDouble, this is very unexpected if you don't know that JS is only using 64-bit floating points underneath. I don't know if it is possible to trim the float values to 32-bit precision stored in a 64-bit variable?

from kotlinx-io.

fzhinkin avatar fzhinkin commented on September 26, 2024

I don't know if it is possible to trim the float values to 32-bit precision stored in a 64-bit variable?

Sure, it's possible, but with potential precision loss (which is always the case for values that could not be represented exactly, like 0.999).

While JS Numbers are always double-precision floating point numbers, JS also provides TypedArrays, where values have fixed width in binary representation. When writing values into these arrays, 64-bit fp Numbers are converted to an arrays' type (in fact, semantics is defined for storing in array's buffer, with the float64 to float32 conversion described here).

To "trim" double-precision fp to a single-precision fp, Kotlin's Float.toBits uses typed arrays with a shared buffer to extract Float's binary representation. As a result, we can get 4 bytes representing a IEEE 754 single-precision fp that was obtained by rounding double-precision Number backing the Float.

Float.fromBits performs transformation in the opposite direction, but reading a value from JS Float32Array converts it back to Number with mantissa least significant bits being "zero-padded", leading to 0.999f not being equal to Float.fromBits(0.999f.toBits()).

from kotlinx-io.

Related Issues (20)

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.