Computer RAM gets biggest upgrade in 25 years but it may be too little, too late — LPCAMM2 won’t stop Apple, Intel and AMD from integrating memory directly on the CPU::LPCAMM2 is a revolution in RAM, but it faces an uphill struggle

  • BorgDrone@lemmy.one
    link
    fedilink
    English
    arrow-up
    6
    ·
    8 months ago

    RAM is basically the scratch space for the CPU. It doesn’t just contain data loaded from the SSD, it contains the running state of the OS and all applications and is constantly being read from and written to by the CPU. As it is, RAM is already a lot slower than the CPU. Replacing RAM with a standard NVMe SSD would slow a PC down to an unusable crawl.

    • Captain Aggravated@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      2
      ·
      8 months ago

      I’m familiar with what RAM is for.

      The idea I’m getting at is, back in the day computer software especially video games came on ROM cartridges, which were little more than a plastic shell around a small circuit board that had a ROM chip or two, maybe a battery backed RAM chip to save game progress if you’re Nintendo. This ROM was attached to the same data bus on the CPU as the system’s built-in RAM, which meant the CPU could read from it just like RAM. This meant that cartridge-based systems didn’t need as much total RAM, because instructions, graphics, audio etc. were read directly from ROM, and it didn’t have to load instructions or graphics into memory before executing/displaying them. So no loading screens.

      Modern computer SSDs are attached via SATA or at best the PCIe bus, and the CPU has to interact with a controller on the device to get data loaded into memory before it can be executed. Could you attach some non-volatile storage on the same bus with the RAM. Like, the average ATX motherboard has 4 RAM slots, right? Could you mount two sticks of RAM and two sticks of non-volatile storage that exists in the memory address space?

      • bruhduh@lemmy.world
        link
        fedilink
        English
        arrow-up
        1
        ·
        8 months ago

        Google linux swap and ramdisk, also cache systems of modern filesystems like bcache, what you think of was already created one way or another, but you probably trying to say that we shouldn’t need to upload data to ram at all, well, data usually compressed or/and encoded so it needs space to uncompress/decode and here’s where ram/swap comes into action, also you can compress ram/swap to get more space look up zram zswap, also there’s linux kernel patches for ram deduplication, also if you manipulate swappiness you can regulate which data uploads to swap (higher numbers upload to swap unsaved data and data which was on disk already gets uploaded from disk thus saving ram space) all ram optimisations you can think of is already implemented