• Kairos@lemmy.today
    link
    fedilink
    arrow-up
    11
    arrow-down
    6
    ·
    6 months ago

    No the correct way is to use the proper fucking metric standard. Use Mi or Gi if you need it. We have computers that can divide large numbers now. We don’t need bit shifting.

    • nybble41@programming.dev
      link
      fedilink
      arrow-up
      4
      arrow-down
      1
      ·
      6 months ago

      The metric standard is to measure information in bits.

      Bytes are a non-metric unit. Not a power-of-ten multiple of the metric base unit for information, the bit.

      If you’re writing “1 million bytes” and not “8 million bits” then you’re not using metric.

      If you aren’t using metric then the metric prefix definitions don’t apply.

      There is plenty of precedent for the prefixes used in metric to refer to something other than an exact power of 1000 when not combined with a metric base unit. A microcomputer is not one one-thousandth of a computer. One thousand microscopes do not add up to one scope. Megastructures are not exactly one million times the size of ordinary structures. Etc.

      Finally: This isn’t primarily about bit shifting, it’s about computers being based on binary representation and the fact that memory addresses are stored and communicated using whole numbers of bits, which naturally leads to memory sizes (for entire memory devices or smaller structures) which are powers of two. Though the fact that no one is going to do something as idiotic as introducing an expensive and completely unnecessary division by a power of ten for every memory access just so you can have 1000-byte MMU pages rather than 4096 also plays a part.

    • ursakhiin@beehaw.org
      link
      fedilink
      arrow-up
      1
      ·
      6 months ago

      This is such a weird take to me. We don’t even colloquially discuss computer storage in terms of 1000.

      The Greek terms were used from the beginning of computing and the new terms of kibi and mebi (etc.) were only added in 1998 when Members it the IEC got upset. But despite that, most personal computers still report in the binary way. The decimal is only used on boxes for marketing terms.

    • PowerCrazy@lemmy.ml
      link
      fedilink
      English
      arrow-up
      1
      ·
      6 months ago

      Hey how is “bit shifting” different then division? (The answer may surprise you).

        • PowerCrazy@lemmy.ml
          link
          fedilink
          English
          arrow-up
          2
          ·
          6 months ago

          interesting, so does the computer have a special “base 10” ALU that somehow implements division without bit shifting?

          • nybble41@programming.dev
            link
            fedilink
            arrow-up
            4
            ·
            6 months ago

            In general integer division is implemented using a form of long division, in binary. There is no base-10 arithmetic involved. It’s a relatively expensive operation which usually requires multiple clock cycles to complete, whereas dividing by a power of two (“bit shifting”) is trivial and can be done in hardware simply by routing the signals appropriately, without any logic gates.

            • PowerCrazy@lemmy.ml
              link
              fedilink
              English
              arrow-up
              2
              arrow-down
              1
              ·
              6 months ago

              In general integer division is implemented using a form of long division, in binary.

              The point of my comment is that division in binary IS bitshifting. There is no other way to do it if you want the real answer. You can estimate, you can round, but the computational method of division is done via bitshifting of binarary expansions of numbers in an ALU.