• Valmond@lemmy.world
      link
      fedilink
      English
      arrow-up
      0
      ·
      4 months ago

      Probably more like the old precision problem. It ecists in C/C++ too and it’s just how fliats and ints work.

        • Blackmist@feddit.uk
          link
          fedilink
          English
          arrow-up
          0
          ·
          edit-2
          4 months ago

          I don’t think that’s how most programmers expect it to work at all.

          However most people would also expect 0.1+0.2==0.3 to return true, so what do I know.

          Floating point is something most of us ignore until it bites us in the ass. And then we never trust it again.

          • Miaou@jlai.lu
            link
            fedilink
            English
            arrow-up
            0
            ·
            4 months ago

            Then most people shouldn’t be writing code, I don’t know what else to tell you, this is probably one of the first thing you learn about FP arithmetic, and any decent compiler/linter should warn you about that.

        • Sylvartas@lemmy.world
          link
          fedilink
          English
          arrow-up
          0
          ·
          4 months ago

          That makes sense, but then you’d just have people converting the int to a float manually and run into the exact same issues.

        • Miaou@jlai.lu
          link
          fedilink
          English
          arrow-up
          0
          ·
          4 months ago

          Idiots downvoting you (c/technology…) but this how e.g. Haskell and rust handle that, and probably most strongly typed languages

        • Womble@lemmy.world
          link
          fedilink
          English
          arrow-up
          0
          ·
          4 months ago

          But how far should that be taken should 8 == 8 return false because one is an unsigned int and the other is signed? Or 0.0 == 0.0 where they are floats and doubles? You can make a case for those due to a strong type system but it would go against most peoples idea of what equality is.

          • If bits aren’t same then i dont want it to tell me they are the same. And python just has one implementation for int and float.

            I like python cos everything’s an object i dont want different types of objects to evaluate the same they are fundamentally different objects is that not what u would expect?

            • Womble@lemmy.world
              link
              fedilink
              English
              arrow-up
              0
              ·
              4 months ago

              Even in python you can have control of what types of numbers are used under the hood with numpy arrays (and chances are if you are using floats in any quantity you want to be using numpy). I would be very surprised if array([1,2,3], dtype=uint8) == array([1,2,3], dtype=int16) gave [False, False, False]. In general I think == for numbers should give mathematical equivalence, with the understanding that comparing floats is highly likely to give false negatives unless you are extremely careful with what you are comparing.

                • Womble@lemmy.world
                  link
                  fedilink
                  English
                  arrow-up
                  0
                  ·
                  edit-2
                  4 months ago

                  More Fortran than C, but its the same for any language doing those sorts of array mathematics, they will be calling compiled versions of blas and lapack. Numpy builds up low level highly optimised compiled functions into a coherant python ecosystem. A numpy array is a C array with some metadata sure, but a python list is also just a C array of pointers to pyobjects.

        • jdnewmil@lemmy.ca
          link
          fedilink
          English
          arrow-up
          0
          ·
          4 months ago

          Way too late for that. Every language I know makes some kind of auto conversion for numeric comparisons… and sometimes for strings as well.

          • Ephera@lemmy.ml
            link
            fedilink
            English
            arrow-up
            0
            ·
            edit-2
            4 months ago

            I know of Rust, which is pedantic enough to not allow comparing integers to floats directly.

            In certain situations, it even disallows making assumptions about equality and ordering between floats.

              • Ephera@lemmy.ml
                link
                fedilink
                English
                arrow-up
                0
                ·
                4 months ago

                Not sure, what blog post you’re talking about, but there’s only really three things you can be doing wrong:

                • Tons of cloning.
                • Running your application from a debug build rather than release build.
                • All the usual things one can be doing wrong in any programming language. Like, I imagine real-world raytracing is done on the GPU and uses highly optimized algorithms. I doubt a blog post would dive into those depths. And well, any kind of graphics programming is extremely slow, if you don’t issue the exact right incantations that the GPU manufacturer optimized for.
  • Diabolo96@lemmy.dbzer0.com
    link
    fedilink
    English
    arrow-up
    0
    ·
    edit-2
    4 months ago

    I geuss it’s something like : if close enough, set to true.

    Now I’ll read the article and discover it’s like 100x more complex.

    Edit : It is indeed at least 100x more complex.

  • magic_lobster_party@kbin.run
    link
    fedilink
    arrow-up
    0
    ·
    4 months ago

    TL;DR:

    In Python, following returns False.

    9007199254740993 == 9007199254740993.0

    The floating point number 9007199254740993.0 is internally represented in memory as 9007199254740992.0 (due to how floating point works).

    Python has special logic for comparing int with floats. Here it will try to compare the int 9007199254740993 with the float 9007199254740992.0. Python sees that the integer parts are different, so it will stop there and return False.

      • Cethin@lemmy.zip
        link
        fedilink
        English
        arrow-up
        0
        ·
        4 months ago

        Comparing is fine, but it should be fuzzy. Less than and greater than are fine, so you basically should only be checking for withing a range of values, not a specific value.

    • kakes@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      0
      ·
      edit-2
      4 months ago

      I assume this is because that number is so large that it loses precision, in which case this is more of a quirk of floating point than a quirk of Python.

      Disclaimer: Have not read the article yet.

      • magic_lobster_party@kbin.run
        link
        fedilink
        arrow-up
        0
        ·
        4 months ago

        It’s both. As you said it’s because of loss of floating point precision, but it’s also with some of the quirks how Python compares int with float. These two together causes this strange behavior.

  • Eximius@lemmy.world
    link
    fedilink
    English
    arrow-up
    0
    ·
    4 months ago

    Did nobody read the manual?

    IEEE 754 double precision: The 53-bit significand precision gives from 15 to 17 significant decimal digits precision.

      • hades@lemm.ee
        link
        fedilink
        English
        arrow-up
        0
        ·
        4 months ago

        The “15 to 17” part is worded somewhat confusingly, but it’s not wrong.

        The number of bits contained in a double is equivalent to ~15.95 decimal digits. If you want to store exactly a decimal number with a fixed number of significant digits, floor(15.95) = 15 digits is the most you can hope for. However, if you want to store exactly a double by writing it out as a decimal number, you need 17 digits.