Slashdot Mirror


IBM Promises More Memory In The Same Space

dcallaghan was among the many readers to write with news of IBM's announcement of new memory technology. The upshot seems to be on-the-fly compression in hardware, taking the tack of RamDoubler and other software compression utilities, but moving the actual data sqashing into dedicated (fast) chips. I hope this leaks out of "server only" land soon; I'd love to have 256MB for the price of 128 -- this would be especially nice with pricey notebook memory.

173 comments

  1. It won't last by tedtimmons · · Score: 2

    Ask yourself: how many people do you know that double their disk drives? Probably not very many, if any at all.

    A few years ago that was all the rage. Now drives are cheap and large. I expect the same to happen with memory- with all the new technologies coming down the pipeline, would you really want to hassle with a "ram doubler"?

    Even if it's in memory, you KNOW it's going to cause a bug in some program somewhere :-)

    1. Re:It won't last by whistler-z · · Score: 3

      Now drives are cheap and large. I expect the same to happen with memory . . .

      Actually, based on the recent Rambus dealings, it's very likely that RAM prices will go up, not down. Assuming this technology can do what they claim (conceivable), and not have an impact on performance (highly doubtful), this could seriously lessen the impact of Rambus's patent squablings on the end user's wallet.

    2. Re:It won't last by ucblockhead · · Score: 1

      The difference is that while doubling your hard drive gives you more room for stuff, doubling your memory space dramatically improves system speed as you use less disk space for paging.

      (Yes, I know that the "double" part is best case, but given the relative speeds of memory and disk, even small amount of compression will likely improve speed.)

      --
      The cake is a pie
    3. Re:It won't last by davebooth · · Score: 1

      Heh! Not with the proverbial 10 foot pole. Its not that I object to intelligent use of compression but if the disk "doublers" were anything to go by this is just going to be a performance hit and will break stuff. Yeah, yeah I know they are busily telling us it will be completely transparent, but do you really honestly believe that of a hardware solution any more than you believed the promises regarding disk compression? (OK, so maybe you DID believe the promises for disk compression but I bet that didnt last long after it got installed!)

      We're all familiar with the scenario where a prog checks enough disk space is available for something critical and then crashes in a nasty heap when it finds out the hard way that the data didnt compress as well as the OS had assumed it would when assuring us there was enough space there... Compression in hardware could well be worse. Wonder what happens when you malloc() enough storage for your struct and then discover that although every check you can run says that there is sizeof(struct_t) space there you can only fit half your elements in there without stomping on somebody elses pointers? lets not go there.. I dont even want to think about coding on such a platform, much less trying to write a daemon that cant be buffer-overflowed... Hmmm. a whole new range of exploits.. pad the start of some input data with truly random garbage that wont compress well and bingo... what a naasty thought :)
      # human firmware exploit
      # Word will insert into your optic buffer
      # without bounds checking

      --
      I had a .sig once. It got boring.
    4. Re:It won't last by teho · · Score: 1

      Let's say you have 128MB physical memory installed, here's an easy way to make sure that nothing bad happens:
      Tell OS you have 256MB available. When that 256th MB is malloc()'d and compression isn't quite doubling the size, page to HD. No performance lost, it would have paged if you didn't have compression anyway. Pointers and everything should work just fine, the same way they do when you page normal RAM to HD.

      It's not like doubling the HD, where when you run out of space, you *really* run out of space.

      -Casey

    5. Re:It won't last by Daniel · · Score: 2

      As a matter of fact, I am running e2compr, the transparent compression module for ext2 (the Linux filesystem). I have been for over a year. It cheerfully handles compression with far more fine-grained control than most Windows programs (eg, you can choose individually whether to compress a file or not) and performs, so far as I can tell, flawlessly. That is, it has never corrupted data or caused bugs in other programs, and has never crashed the system even under heavy load. There was one crashing problem (that I never triggered) which was recently discovered and fixed; I don't think there are any other known outstanding issues.

      So yes, transparent compression can work just fine. The case of running out of space is a problem, but no program should blindly assume that the amount of disk space remaining is reliable unless it's running on a single-process system, and even then it's shaky. What if, while the program that needs X disk space is running, I download and unpack a file? Worse, what if another user does it on a multi-user system? Programs that break in this way are broken already, period.

      Daniel

      --
      Hurry up and jump on the individualist bandwagon!
    6. Re:It won't last by Cramer · · Score: 1

      NTFS has had this capability for years. And I use it daily -- altho' there are some things that don't like being compressed (clearcase dynamic view storage for one which makes me even more suspect of those nuts) and it does trade cpu cycles for drive space.

      You have to keep in mind per-file FS based compression is almost never as good as a zip file, tar.gz, or tar.bz2... The FS compression is designed to minimize random access overhead.

    7. Re:It won't last by orpheus · · Score: 4

      Five major points about system memory compression:

      1. Why do you want to do it
      Is it because RAM is expensive? Okay, but RAM prices would have to climb much higher to make it worth the new boards, new architectures, and intrinsic problems

      Is it because your system will 'run faster with more RAM'? Don't count on it. Trading RAM latency for apparent RAM size will mean that a given apparent RAM size would run slower than when uncompressed (i.e. 64->128MB compressed is slower than 128MB uncompressed), and the performance gain would be variable for a given *true* RAM size (= larger apparent size), and may disappear in certain settings (Is 64MB->128 MB faster than 64MB compressed? Depends.)

      Remember, CPUs are data hungry critters, and feeding them at one end (and emptying them at the other) is already one of the biggest challenges of modern system design.

      2. Transparency is not enough. We need ultra-transparency
      Remember: any general purpose compression yields variable results with different data (and changing a bit will change the 'actual size' of a block, and hence the physical location oif the bytes within the block. Compression confounds the 1:1 correspondence between the physical and logical memory address, and the relationships between different memory addresses, so we'll need to de/compress entire blocks and cache them (more on this later)

      Without ultra-transparency, optimizing low level code becomes fraught with emergent effects. the most important thing about RAM is the capability for RANDOM access a lot of people have forgotten there was any other kind -- serial memory, bubble memory, etc. -- bucket-brigaded bits demanded very different algorithms for efficiency!

      Think of the pitfalls of straight CPU/mobo caching designs. 'Cache thrashing' can bring some fast algorithms to a molasses crawl, precisely because caching disrupts the relationship between between contiguous bytes: A slower algorthm that reuses bytes in cache is preferred over a 'mathematically faster' one that relies on massive sequential reads. Compression thrashing can do the same, and will have (multiple) cache problems on top of this..

      3. Where did I put that block?
      There is no assurance that you will be able to return a block to the same DRAM location you got it -- change a few bytes, and it may be larger (in physical length) than it was, despite having the same virtual length. This implies RAM fragmentation -- and all the associated housekeeping. And where are you going to store the record keeping? In *another* local cache? In RAM?

      You'll need lots of hardware housekeeping here. It's do-able, but without a level of sophistication that approaches predictive brancing and pipelining, you can count on extensive unexpected 'emergent effects' -- code that's slow for non-obvious reason, or bugs.

      4. Strangely, on-chip cache may be the best place to use hardware RAM compression!
      a) Hardware compression would be a small addition to the CPU circuitry, and can be run at the full multiplier speed.
      b) No need for separate chips or mobo redesign
      c) on-chip cache costs hundreds of dollars a meg (price a 512K PIII vs a 2MB PIII Xeon of the same clock speed) so extraordinary measures can be taken. It will probably improve chip yield, too.
      d) integrating compression with the prediction/pipelining/cache management/etc of the CPU, can make it more transparent
      e) L1/L2 is where you will get *huge* payoff, by 'keeping baby fed'.
      f) there's much less latency (chipset, PC trace, L1, L2, L3 cache) on-chip vs. off chip, so Adding an off-chip layer adds more latency than adding an on-chip layer

      5. The fundamental performance rule is: trade excess performance in one place to improve inferior performance elsewhere
      RAM is no longer a source of 'excess performance', it's a pressure point. Every extra 10MBps in RAM throughput shows up in the benchmarks (unlike, say HDD busses like ATA33/66/100, where doubling or tripling speed does little for system performance.

      Where's the excess speed in modern systems? It's inside the CPU -- which runs at a multiplied clock speed, has vast optimization, and is always starved for data. it's also the place where adding RAM does the most good.

      However (!) using compressed on-chip cache will require an intensive study and redesign of cache theory, unless this possibility has already been explored in conjunction with the development of the current CPU features like predictive/pipelining/VLIW. 2-,4-, 8-way associative simply won't hack it when the cache doesn't have 1:1 virtual/physical data correspondence!

      --

      If you can go to bed, knowing you did a valuable thing today, you're very lucky. If you can't... it's not bedtime

    8. Re:It won't last by Maurice · · Score: 1

      pad the start of some input data with truly random garbage that wont compress well and bingo

      Random garbage would compress very well actually. Probably about 50%.

    9. Re:It won't last by ocie · · Score: 1

      Random garbage would compress very well actually. Probably about 50%.

      BZZZT Sorry, if the garbage were pure and statistally random it should not compress at all. On the contrary, it may even grow. This is a consequence of information theory, but there is a fairly intuitive reason behind it.

      First, there is a maximum compression you will be able to get for a group of bits. Otherwise, everything would eventually compress to one bit, and how could we possibly uncompress one bit into more than two distinct things?

      Second, compression just substitutes one set of bits for another. If every set of bits of length N could be reduced to a unique set of bits with length < N, then 2^N items were just mapped to at best 2^(N-1)+2^(N-2)+...=(2^N)-1. Best case, at least two items just got mapped to the same item. Therefore, if a loseless compression scheme is to be reversible, there must be cases where the output will be larger than the input.

      --
      JET Program: see Japan, meet intere
    10. Re:It won't last by Shostykovich · · Score: 1

      ...the most important thing about RAM is the capability for RANDOM access...

      Actually, I would have to say that the most important aspect of "RAM" is that it is actually RWM, meaning that it can be written to as well as read from. Without the capability for being written to, "RAM" would be very much less usefull than it is now.
      The rest of your comment I pretty much agree with.

    11. Re:It won't last by ocie · · Score: 1

      I wanted to reply to this yesterday, but we or slashdot or both were offline.

      Anyway, the number of bytes doesn't really matter, compression comes from the ability to create a statistical model which predicts probabilities that differ from a uniform distribution. Take a fair coin (one that comes up heads 50% of the time and tails 50%) and try to compress the sequence of H's and T's that it produces. If you look at the sequence, there may be runs of H's or T's, but these runs are entirely expected from a uniform distribution. A run of 1 or more happens every time, a run of two or more requires that the second coin match the first, and so happens 50% of the time. A run of three or more happens 25% of the time, and so on. Since these runs are predicted by a uniform distribution, they don't represent any redundancy that can be exploited to compress the data.

      If, on the other hand, your coin only came up heads one time in 10, then you could compress the data because the sequence of H's and T's wouldn't be predicted by a uniform distibution.

      --
      JET Program: see Japan, meet intere
  2. Re:foist? by GoNINzo · · Score: 1
    Sorry, my first attempt, and apparently a success.

    Feel free to suck away my karma now, I don't think I'll be attempting it again now that i've made first post... heh

    This has been a lame post for a really stupid reason. please moderate down.

    --
    Gonzo Granzeau

    --
    Gonzo Granzeau
    "Nothing the god of biomechanics wouldn't let you into heaven for.." -Roy Batty
  3. Does that mean software compression is now moot? by efuseekay · · Score: 2

    So the compressing is done on hardware, cool.

    But since once compressed, we can't compress
    them any further, does this mean that any
    software compression to increase mem space is
    no longer usable?

    I like extra MB, but let's hope that they
    actually increase the physical storage space instead of just increasing "logical" storage.

    --
    Mode (3) smart-aleck mode. Press * to return to main menu.
  4. BIOS level support by dorzak · · Score: 1
    Since this is hardware located on the motherboard, don't look for it in the desktop too soon, unless Rambus licensing fees drive it.

    Since it is on the motherboard it would probably require support at the bios level. Also because it has its own caching system, it may only work with certain CPU chips, maybe, maybe not.

    The key to its adoption is if IBM prices low enough it could take the wind out of RAMBUS's sails.

    The speed could be slower than current ram, but if the compression chip is fastest enough, because the data is being read and wrote into the chip compressed it could effectively double ram transfer rates. The bottleneck would be the compression chip.

    1. Re:BIOS level support by drinkypoo · · Score: 2

      Since this is hardware located on the motherboard, don't look for it in the desktop too soon, unless Rambus licensing fees drive it.

      Since it is on the motherboard it would probably require support at the bios level. Also because it has its own caching system, it may only work with certain CPU chips, maybe, maybe not.

      The real question is, where does this technology live? Is it in the North Bridge, or in some other bizarre location? Or is it on the DIMM?

      See, for it to be truly transparent (Which it more or less has to be) it's going to have to be in the chipset, or on the DIMM. Putting it on the DIMM means there has to be one of these suckers for each DIMM, but then that might be true already. It seems to make the most sense to embed it into the chipset, or to sandwich it between the chipset and the memory.

      If IBM does it right, then that means that you will not need any OS support for this "technology". From the article given, it doesn't really sound like there's anything amazingly new here, but that remains to be seen. I'd want to see the patent involved before I made any calls on this. In any case, hardware data compression has been around for a long time. Heck, take as a [lousy] example the FWB Jackhammer NuBus SCSI cards for the Mac. Those did compression in hardware, though they did have a software component (the driver written to the hard disk.) I'm envisioning this as a more transparent way of handling it.

      It's not unreasonable to say that IBM could get 2:1 compression ratios reliably with a good algorithm and some high-speed logic. It's even likely that it will be cheaper to buy 512mb using this technology than 1gb without it; It's even more likely that it'll be cheaper to buy 2gb with it than 4gb without it, because the larger the DIMM, the higher the cost per megabyte, once you get past a certain point (about 32mb.)

      Anyway, show me the patent. I'd like to read it.

      --
      "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
  5. This is good for bus speeds by Sludge · · Score: 3

    This would rock on the PC, where our bus speeds are slowly reaching 133mhz. If you could send the data compressed across the bus, that is.

    Avoiding the low PC bus speeds are what 3D cards do best. You only upload the textures, and then you just send the vertices of the polygons across every time. Hell, some newer cards are even doing the calculations on some of the vertices once they've made the jump across the bus.

    This also holds true for DVD decoders.

    I wonder how viable hardware decompression is? Would it be a catch all solution for (low end) replacements for all these avert-the-PC-bus hardware cards? Admittedly, I'm not in touch with any relevant benchmarks to this sort of stuff these days.

    1. Re:This is good for bus speeds by thue · · Score: 1

      It would be good for bandwidth, but not for latency I would imagine. As to what the net result would be I have no idea.

  6. Ethics behind this by MostlyHarmless · · Score: 2

    This is kind of a tangent, but would there be any issues behind this if they were using, say, LZW compression? Yes, I now they're not. But if they did, would it be kosher? Would we be allowed to use it while still feeling ethically clean?

    This is similar to an issue that popped up when RMS spoke in Cincinnati. Someone asked if it was ok to use Transmeta's chips if the conversion layer was proprietary. The answer was that he had not heard anything about it (it was a few days after they made their big announcement) but he guessed (I think) that it might be ok, since hardware costs money to distribute (while software does not). My memory may be slightly flawed on this; don't quote me on it.

    As free software gains, we will start encountering this questions more often, with the original, simple principle of sharing software moving into a more general ethical realm dealing with intellectual property in general.

    --
    Friends don't let friends misuse the subjunctive.
    1. Re:Ethics behind this by fReNeTiK · · Score: 1

      For Big Blue, that shouldn't be too much of a problem.

      Of all corporations, IBM would have a sufficient patent pool of its own to resolve such an issue trough cross-licensing.

      No?

      --
      I strongly believe that trying to be clever is detrimental to your health. -- Linus Torvalds
    2. Re:Ethics behind this by MostlyHarmless · · Score: 2

      Of course IBM would be able to develop this without being sued by someone else. That was not the issue in question for me.

      The real problem is how the free software movement should react to things ilke this in general. Do the same ethics apply in the hardware areas as well as in the software? Obviously, we can't abstain from using any software that's patented, but we can still fight against ridiculous ones such as the one-click.

      --
      Friends don't let friends misuse the subjunctive.
    3. Re:Ethics behind this by NaughtyEddie · · Score: 1

      Free Software is a political ideal, not an ethical one.

      --

      --
      It's a .88 magnum -- it goes through schools.
      -- Danny Vermin
    4. Re:Ethics behind this by Sloppy · · Score: 2

      Do the same ethics apply in the hardware areas as well as in the software?

      Yes and no. Yes, the same ethics apply, but no, the ethical objection against the LZW patent does not apply. Consider the enormous capital that a company would have to expend in order to manufacture these chips (the fact that it's IBM should give you a hint as to the scale), as well as the months (years) of planning and design that go into them. Does a patent search (and negotiations) seem like an overwhelming part of the development budget? (Compare this to a programmer who can inadvertantly infringe upon a dozen software patents per hour of his work.)

      Furthermore, this is allegedly transparent, where systems that it interfaces with are not required to also license the patent. Compare this to a protocol or interchange file format (e.g. GIF). If you use GIF, you have to license the LZW patent. If you use these chips, you won't.

      I don't see the patent doing any damage here.

      Same ethics always apply, but different conclusions depending on circumstances.


      ---
      --
      As copyright owner of this comment, I authorize everyone to defeat any technological measure which limits access to it.
  7. ALERT! danger! by Signal+11 · · Score: 5
    Whoah, wait, backup, slow down.. halt.

    Compression CANNOT guarantee anything better than 1:1 ratio - it is ENTIRELY dependent on the data.

    For data compression in memory to succeed, you MUST have an option to cache the "extra" memory to a swapfile incase the prediction logic fails and you run out of physical ram. If you do not, you will tank your system, bigtime.

    Sorry, but I'm very leery of any "memory compression" - it requires OS support to function. Period. You aren't going to just plug in a miracle DIMM and make it work. I hope IBM is opening the spec (it looks like they are) and that OS development people quickly embrace this, or their hardware will take a nosedive in the market.

    1. Re:ALERT! danger! by Some+Strange+Guy · · Score: 2
      Compression CANNOT guarantee anything better than 1:1 ratio - it is ENTIRELY dependent on the data.

      Precisely what I was going to say. But then I started thinking about it some more. You can't guarantee even a 1:1 ratio; purely random data will compress to slightly larger than original size, as you have to tag it.

      Stepping back for a second, though, is this REALLY a problem for most systems? I'd be willing to bet that 99.999% of the time, multi-user systems run memory images that are at least moderately compressable. The curve of pessimistic memory availability vs. actual usage would yield something akin to a MTBF, which would be a good enough guarantee for those server spaces that are looking to save a few bucks.

      Of course, memory usage limits would need to be in place to prevent some really obvious machine-crash attacks from users, but isn't that true already?

    2. Re:ALERT! danger! by QBasic_Dude · · Score: 3
      Compression CANNOT guarantee anything better than 1:1 ratio - it is ENTIRELY dependent on the data.

      This is true with random data, but most data is not random. A quote from the comp.compression FAQ:

      - The US patent office no longer grants patents on perpetual motion machines,
      but has recently granted a patent on a mathematically impossible process
      (compression of truly random data): 5,533,051 "Method for Data Compression".
      See item 9.5 of this FAQ for details.

      As can be seen from the above list, some of the most popular compression
      programs (compress, pkzip, zoo, lha, arj) are now covered by patents.
      (This says nothing about the validity of these patents.)

      Here are some references on data compression patents. Some of them are
      taken from the list ftp://prep.ai.mit.edu/pub/lpf/patent-list.

      ....
      9.2 The counting argument

      [This section should probably be called "The counting theorem" because some
      people think that "argument" implies that it is only an hypothesis, not a
      proven mathematical fact. The "counting argument" is actually the proof of the
      theorem.]

      The WEB compressor (see details in section 9.3 below) was claimed to compress
      without loss *all* files of greater than 64KB in size to about 1/16th their
      original length. A very simple counting argument shows that this is impossible,
      regardless of the compression method. It is even impossible to guarantee
      lossless compression of all files by at least one bit. (Many other proofs have
      been posted on comp.compression, please do not post yet another one.)

      Theorem:
      No program can compress without loss *all* files of size >= N bits, for
      any given integer N >= 0.

      Proof:
      Assume that the program can compress without loss all files of size >= N
      bits. Compress with this program all the 2^N files which have exactly N
      bits. All compressed files have at most N-1 bits, so there are at most
      (2^N)-1 different compressed files [2^(N-1) files of size N-1, 2^(N-2) of
      size N-2, and so on, down to 1 file of size 0]. So at least two different
      input files must compress to the same output file. Hence the compression
      program cannot be lossless.



      For data compression in memory to succeed, you MUST have an option to cache the "extra" memory to a swapfile incase the prediction logic fails and you run out of physical ram. If you do not, you will tank your system, bigtime.

      This is not true. Auxilary memory will most likely be stored on the chip itself. Data compression does not predict logic. A stream is compressed by examining it's redundancy and storing pointers back to the original match (as LZSS does), or encoding each symbol in a less number of bits (as in Huffman).


      Sorry, but I'm very leery of any "memory compression" - it requires OS support to function. Period. You aren't going to just plug in a miracle DIMM and make it work. I hope IBM is opening the spec (it looks like they are) and that OS development people quickly embrace this, or their hardware will take a nosedive in the market.

      This is not true. There are a number of hardware data compressors. MPEG is decoded in hardware by the N64 hardware, for instance. "Miracle DIMMs" are known as hardware compression units.

    3. Re:ALERT! danger! by BobBilly · · Score: 1

      Excuse me, but you're a total bullshit artist and nothing you said has any basis in reality

      umm....what he said is true.....try compressing a .wav file or a .mp3 file versus compressing a .txt or a .doc file.............one is going to compress by about 50% while the other....by maybe 5% if u are lucky......i would guess same thing with RAM......the "compressor" will not be able to compress all of the data.


      Why win9x really sucks

    4. Re:ALERT! danger! by QBasic_Dude · · Score: 1
      Stepping back for a second, though, is this REALLY a problem for most systems? I'd be willing to bet that 99.999% of the time, multi-user systems run memory images that are at least moderately compressable.

      The real problem is every time a character is written to memory, the entire memory block has to be recompressed.

    5. Re:ALERT! danger! by Signal+11 · · Score: 1
      Thanks for quoting the FAQ, but you missed my entire point - memory has to be optimized for worst-case. Worst-case means if it tells my board it is a 256MB dimm, it must have the resources to deal with all 256MBs with no compression. If you don't do your numbers by worse-case scenario, then something like encrypting a large file (which makes use of massive amounts of entropy.. atleast we hope) or loading a pre-compressed file into memory.. like, say, an MP3 server with a RealAudio connection to the net might do.. then the system will tank as it has nowhere to put the extra RAM.

      You can't push/pull data out of some mystery void.. it has to go somewhere.. and in a worst-case scenario, one bit takes up one bit of space. Sorry.

    6. Re:ALERT! danger! by ucblockhead · · Score: 1

      Why not just tie it into the paging system? Then you have no trouble dealing with going below the actual amount of memory. You just page fault.

      That'd really be the way to do it. A "256 MB" compressed chip acts like it as 256 MB even though it only has 128 MB actual. Once it fills, it page faults.

      In practice, I doubt you'll ever actually hit that sort of case you're talking about. You'd have to assume that everything in memory was already compressed/random. That's never going to be the case given the large numbers of different programs running around, most written without concern about memory. Lots of arrays of zeros.

      Unless you are running some kind of single process OS like DOS, I don't see how you could ever get your memory into a state where you couldn't even get 1:1 compression. There are just too many other processes running around in modern OSes.

      --
      The cake is a pie
    7. Re:ALERT! danger! by um...+Lucas · · Score: 2

      Compression CANNOT guarantee anything better than 1:1 ratio - it is ENTIRELY dependent on
      the data.


      Nothing in life is guaranteed, you're right. But most of the plain old ASCII text files on my hard drive compress 75-90%, depending on length.

      For data compression in memory to succeed, you MUST have an option to cache the "extra" memory to a swapfile incase the prediction logic fails and you run out of physical ram. If you do not, you will tank your system, bigtime.

      Well, it's not like IBM's mandating the removal of virtual memory or swap files in order for this to work. That's what it's there fore, to catch whatever won't fit in RAM.

      Sorry, but I'm very leery of any "memory compression" - it requires OS support to function. Period. You aren't going to just plug in a miracle DIMM and make it work. I hope IBM is opening the spec (it looks like they are) and that OS development people quickly embrace this, or their hardware will take a nosedive in the market.

      Not so. Just look at connectix' RAM doubler on the Mac. It was a 300 to 400k extension that DID effectively double a systems memory, with a 3% to 5% slowdown, and NO extra help from apple. If the compressions now done in hardware, I'd expect 0% slowdown, and still no requirement that each OS explicitly support it. So long as it's built in at the chipset level, as long as the OS can communicate with the memory controller, everything should work fine, right?

    8. Re:ALERT! danger! by MrBogus · · Score: 1

      Part of RAMDoubler's commercial success was (is?) due to the fact that the MacOS virtual memory system sucks rocks. So compare your 3-5% to 10-20% under System 7's native system.

      RAMDoubler simply replaced the native virtual memory system with a better, but slightly less compatible one. The memory compression features were a later add-on -- I'm not sure how effective, fast, or widely used they were.

      --

      When I hear the word 'innovation', I reach for my pistol.
    9. Re:ALERT! danger! by mikpos · · Score: 1

      Uhh moron, you just contradicted yourself. You conceded to bojay's point, saying that if not everything could be stored in RAM, it would have to be stored somewhere else, like in a swap file. "That's what it's there [for], to catch whatever won't fit in RAM". Then you say that it won't require any intervention from software? Swapping is implemented in software always. If the kernel tries to write to a portion in memory that can't physically exist (because all the memory's already been taken up because hax0r_j03 is running his random-memory-allocator-bomb), then bad stuff will start to happen. Either the kernel is notified that all the memory's taken up (e.g. there must be a software side to this) or unexpected things (most likely death) will happen.

    10. Re:ALERT! danger! by Mr+Rohan · · Score: 1
      Compression CANNOT guarantee anything better than 1:1 ratio - it is ENTIRELY dependent on the data.

      True if you don't know what the data is, however, if you do know what the data is you can guarantee a level of compressibility. For instance instruction data is high in entropy so an algorithm optimized to handle x86 instructions could (for instance) improve the performance of the memory subsystem

      Should this be called reversible code-morphing :-)

    11. Re:ALERT! danger! by Azog · · Score: 3

      Memory compression (and disk compression too) are useless to me, with one exception: texture compression on video cards.

      Think about this. I have 256 MB of ram and 50 GB of disk space on my main machine. Why not, it's cheap! What I want is lower latency storage. Right now, that is expensive or unavailable, but would make a difference to the performance-sensitive apps I run.

      Furthermore, the large files that I would like to compress are already compressed: video (MPEG), sound (MP3), and image files (JPG). On my 40GB server, I have 17 GB of MP3s, 1 GB of other files, and the rest is empty space! Why bother compressing that 1 GB just to get half a gig back?

      From what I hear, even people who do non-linear video editing are editing compressed MPEG directly these days, rather than using uncompressed AVI or other formats.

      So... What applications could actually benefit from this?

      Maybe web servers with thousands of text files in RAM? Maybe people working with extremely high resolution bitmaps or uncompressed video?

      Torrey Hoffman (Azog)

      --
      Torrey Hoffman (Azog)
      "HTML needs a rant tag" - Alan Cox
    12. Re:ALERT! danger! by jallen02 · · Score: 1

      Okay.. Not that I doubt anyone who is postulating about compression or saying IBM is not sure what they are doing or anything, since I bet some of you guys could give IBM folks a run for their money with compression.

      I dont know anything about compression so I can only look at this from a higher level perspective.

      I am going to assume that IBM can afford more than one person with Ph.D 's in math and people specifically who know all about compression. Given you guys are just not postulating the first hardships IBM would most likely face and given IBM is releasing announcements or something to that effect about this... Dont you guys think that IBM has covered most of this and its probably pretty baseless to say they dont know what they are doing?

      Of course one must always learn things for themselves, but Hmmn, a thread on /. versus IBM's engineers. I will now approach this concept with some skepticism, and know what questions and things to look for.. But I think its pretty safe to say that IBM is probably not just shoveling vaporware out for entertainment or anything.

      Jeremy

    13. Re:ALERT! danger! by um...+Lucas · · Score: 1

      In the hopes that you get this, let me clarify:

      I was under the interpretation that he meant that an operating system would have to add SPECIFIC support for this technology, where as I was implying that support already exists.

      If the chip is implemented somewhere beyond the memory controller and reports to it the amount of usable memory, then everything stays the same, except you get to use either more memory, or depending on the cost, systems could be built cheaper because they wouldn't require as much physical memory. Unfortunately around here, that would make technologies such as Rambus much more feasible.

      Yes, the technology will not and can not stop the use of swap files, but it still can lead to more usable memory in a system.

  8. How fast can it be? by exploder · · Score: 4


    IANAHardware Engineer, but it seems to me that RAM is already designed to do one simple thing (okay, two things: peek and poke) and to do it absolutely as fast as possible. This technology inevitably will degrade RAM performance by a finite amount. Is their chip fast enough that this degredation will be negligible? If so, then this will be Extremely Cool. If not, then no thanks, I'll just shell out for the extra RAM. Of course, the economics on a huge server with 100GB of RAM are most likely compeletely different.

    --
    Yo dawg, I heard you like the Ackermann function, so OH GOD OH GOD OH GOD
    1. Re:How fast can it be? by Christopher+Thomas · · Score: 2

      IANAHardware Engineer, but it seems to me that RAM is already designed to do one simple thing (okay, two things: peek and poke) and to do it absolutely as fast as possible. This technology inevitably will degrade RAM performance by a finite amount. Is their chip fast enough that this degredation will be negligible?

      The saving grace for RAM compression is that DRAM is very slow by logic standards. As long as they're doing something simple like short-run run length compression, the compression/decompression could easily be fast enough to not be noticed compared to the DRAM latency.

      YMMV, though.

    2. Re:How fast can it be? by marick · · Score: 1
      ...but it seems to me that RAM is already designed to do one simple thing (okay, two things: peek and poke) and to do it absolutely as fast as possible
      Not quite. DRAM is also designed to be cheap, using only 2 transistors per bit of storage. There are other kinds of RAM (such as those used in your L1 cache) that are designed to be as fast as possible (i.e. single clock access time), but use MANY MORE TRANSISTORS(I believe >8 per bit of storage), so are much more expensive. DRAM is cheap, but because it uses so few transistors, it has to be "refreshed" periodically. This is one of the reasons why it is so slow (~10 clock cycle access time), and is why all modern processors have at least one cache (and frequently more than one) between the processor and the DRAM. Of course, paging to disk (which happens whenever you are using more memory than you have) is EXTREMELY slow (~1000 clock cycles/access). This is why IBM's technology sounds very interesting. It will make memory access slower, but probably not much slower than it already is. It will also reduce the amount of paging to disk, by effectively doubling your RAM.
    3. Re:How fast can it be? by solman · · Score: 1

      Any request for data that has to be pulled from DRAM has already been through a couple of cache faults. Adding an extra hardware lookup mechanism can certainly be done in a way that does not noticably impair performance.

      What this invention does is significantly decrease the frequency with which virtual memory needs to be accessed. Disk access is very expensive, so the savings can be quite substantial.

  9. RAM prices increasing by crow · · Score: 1

    With increasing RAM prices due to the Rambus patents, this is a very well-timed announcement.

  10. Eesh. by zCyl · · Score: 1

    What's the world coming to? I heard this on the radio this morning before I got around to checking Slashdot. Amazing that this is radio-worthy...

  11. Of course NT servers need this! by c.r.o.c.o · · Score: 2

    "as memory comprises 40 to 70 percent of the cost of most NT-based server configurations"

    That's because NT is bloatware. Now if everybody would run Linux, there would be no need for this technology, now would there..

    I'm sorry, but I just had to post this.

    1. Re:Of course NT servers need this! by ryanw · · Score: 1

      I don't think this only goes for NT .. seriously... You ever tried to run a whole bunch of X apps, on a Pentium 90 with 16 MB of ram?? How about 32MB ram?? Dude, it's not just NT that needs ram. Swapping on Linux is not something to look forward to..

    2. Re:Of course NT servers need this! by spectecjr · · Score: 3

      "as memory comprises 40 to 70 percent of the cost of most NT-based server configurations"

      That's because NT is bloatware. Now if everybody would run Linux, there would be no need for this technology, now would there..

      I'm sorry, but I just had to post this.


      Actually, NT's not the problem. The problem is administrators who don't know how to take Exchange and SQL Server out of "Standalone" mode; as standard they pre-allocate a massive chunk of memory (as much as they can get; usually between 60-80%) so that they can run as fast as possible when they're on a dedicated box - which is the recommended way of setting them up on a large network.

      You can, however, turn this off. The registry key settings to do it are documented.

      Si

      --
      Coming soon - pyrogyra
    3. Re:Of course NT servers need this! by sparty · · Score: 1

      Yes, but NT servers use RAM like big SUVs use gas...most of the time, the same task (ie hauling the kids to school or running a moderate-volume server of some sort, whether it's WWW, FTP, or SMB) doesn't need all of the overhead that NT has. Doing the same thing with a Linux system (for example...*BSD would also apply, I think) is usually more efficient because there's less unused overhead... (the windowing system comes to mind)

    4. Re:Of course NT servers need this! by logistix · · Score: 1

      It's actually probably because NT uses UNICODE for it's native character set. This is 16 bit wide characters. Practically (for those of us using english) you're just using the ANSI-subset, which leaves every other byte in a string set to 0.

      Probably makes it easy to get good compression.

      And just because it's slashdot- Unicode is a Good Thing(tm)

      --
      - My password is slashdot
    5. Re:Of course NT servers need this! by Omnifarious · · Score: 1

      Ahh, the default settings of the programs aren't Microsoft's fault. Obviously, the programs couldn't possibly be written to allocate memory as they need it and only build up to allocating a massive chunk on a system where you were actually handling a heavy load.

      Yep, it's all the stupid admin's fault. After all, what can you expect out of an admin who was hired because NT is supposed to be extremely easy to administrate due to its graphical nature.

    6. Re:Of course NT servers need this! by Sloppy · · Score: 1

      "as memory comprises 40 to 70 percent of the cost of most NT-based server configurations"

      That's because NT is bloatware.

      No, it's because they're pulling numbers out of their asses. From what I've seen of NT, the install/administration labor costs 90% of an NT server system's cost, so it seems unlikely to me that the cost of the RAM could exceed 5%.

      Now if everybody would run Linux, there would be no need for this technology, now would there..

      Oh dear. I think I've just been trolled.


      ---
      --
      As copyright owner of this comment, I authorize everyone to defeat any technological measure which limits access to it.
    7. Re:Of course NT servers need this! by spectecjr · · Score: 1

      Ahh, the default settings of the programs aren't Microsoft's fault. Obviously, the programs couldn't possibly be written to allocate memory as they need it and only build up to allocating a massive chunk on a system where you were actually handling a heavy load.

      As I said; the recommended way to set these things up is in dedicated server mode. The documentation states this. The defaults are set for this purpose. This gives you the fastest response, and the best results under heavy load.

      Microsoft recommend that you run it in this way; they set up the software to run this way -- but they also tell you that this is the case. So yes, if the admin is complaining of heavy memory load when he knows damn well that it's set to run as a dedicated server, it is his fault. (S)he should learn to crack a book - or even RTFM.

      Simon

      --
      Coming soon - pyrogyra
  12. An offtopic question about memory by billybob+jr · · Score: 1

    Seeing as how more consumer video cards are coming with 32 and 64 megs of ram on board, is there anyway to use this as auxillary ram? I know the interface to it would be much slower than main memory, but it would still be magnitudes faster than a hard disk. If you could make it a ram drive, it could be a virtual swap drive that would run a heck of a lot faster than your hard disk. Seems like it would be a neat project.

    1. Re:An offtopic question about memory by billybob+jr · · Score: 1

      and now for a third time: it would much faster than your hard drive!

      doh!

    2. Re:An offtopic question about memory by Ranger+Rick · · Score: 1
      You used to be able to do this with the Gravis Ultrasound sound card (you know, the design creative labs stole to make the AWE* series).

      It had up to a meg of ram, and there was a dos program to use it as a ramdisk.

      :wq!

      --

      WWJD? JWRTFM!!!

  13. Stretching Old Tech Too Far by Digitalia · · Score: 2

    There is only so much that you can work with, before you need to start throwing out the old paradigm. Silicon is dying so countless engineers develop life support for it, while claiming that things are fine.

    Parallel computing, genetic algorithms, and this will not solve the problem. they will only prolong the world's suffering to a time when people will have become used to Big Silicon. Then all of the Wunderkinds of the Valley will be too old to execute for gross negligence.

    While this appears to be a good idea, we must understand that we can not grow too secure in silicon. When you get below .1 micron, you can't outrun the quantum boogeyman. Minimize, dis-consolidize, but realize that our future is not that of Silicon.

    --
    Pax Digitalia
    1. Re:Stretching Old Tech Too Far by yakfacts · · Score: 1

      The problem with junking Si is the base of manufacturing lines and manhours in tacit knowledge. I think Si still has a way to go (with some of the new technologies), but this old capacitor-RAM has GOT to go.

    2. Re:Stretching Old Tech Too Far by Digitalia · · Score: 1

      Silicon has 20 years, tops. In 20 years, the industrial revolution that is sweeping the world will hopefully be over. Then even the average citizen of the second and third world nations may have computers. but if the entire system is based on Silicon, then the cost of everyone replacing their system would astronomical. In addition, if the new method would be incompatible with Silicon processing, then these people would be isolated by their socioeconomic status once again. and if there is some way discovered to interface the two, speed of the better will surely be compromised by that of the relatively anachronistic Silicon.

      worst case scenario: Mad Max meets Bill Gates
      best case scenario: Mad Max kills Bill Gates

      --
      Pax Digitalia
    3. Re:Stretching Old Tech Too Far by MostlyHarmless · · Score: 2

      Ha ha. Then what do you suppose to replace silicon with?

      Look at it this way: If a technology existed that was good enough, people would use it. That's the way free market works.

      You could argue that the big manufacturers don't want to retool or are scared of the change, in the same way that the RIAA is scared to death of electronic music. In that case, upstarts with cost of retooling = $0 will take over with the new technology in the same way that Napster, Gnutella, and Freenet are taking over music distribution from the RIAA.

      --
      Friends don't let friends misuse the subjunctive.
    4. Re:Stretching Old Tech Too Far by yakfacts · · Score: 1

      I don't quite understand your point here...except that you are arguing for the limitations of Si. We have reached and surpassed the "theoretical maximum" of Si several times before. And there are people working on how to do it now. Si is one of the most abundant materials on the planet. GaAs or GaN are neat, but veryvery expensive now both to produce and process, plus they have a high failure (infant mortality) rate. A better way to use Si seems the cheapest route to me.

    5. Re:Stretching Old Tech Too Far by Digitalia · · Score: 1

      I didn't say what I meant clearly. I do not mean that we would be using another processing medium if it weren't for corporations like Intel. I merely say that it is important to start looking for a solution that will replace silicon when it is no longer as able as we would need. For the most part, this is because we are stuck in silicon. Its cheap, relatively, to produce a silicon chip. Why blow a good thing, eh? Invest billions in researching a medium that could kill them, or spend that money to push the bottom line?

      --
      Pax Digitalia
    6. Re:Stretching Old Tech Too Far by Digitalia · · Score: 1

      These "theoretical maximums" you speak have only been postponed. We can only refine the lithographic process so much before it becomes too expensive or too complicated. I do not think we can do much with exotic chips either, though. If it weren't for the complexity of setting up a molecular computation, and its lack of diversity, or the difficulty in producing the utter vacuum nessecary for quantum computing, these methods would be the most appealing.

      As to the validity of my point, it doesn't exist. In fact this post is mostly an off topic rant about my anger that we don't live in a world filled with bacterial computers as promised by AmSci when I was growing up.

      --
      Pax Digitalia
    7. Re:Stretching Old Tech Too Far by Digitalia · · Score: 1

      Isotropically pure Si-28 will not solve all of your problems. In fac, this will not extend the date beyond my estimation of 20 years. This isotope of Silicon addresses issues of heat distribution, but does not deal with the lithographic process. You can only produce an electrical conduit so small, and then it's use becomes moot. When you start to go lower than .1 microns, the quantum effects of electrons can be seen. An electron begins to tunnel, and a high enough fraction of your electrons will escape that the refinement of the process will have been academic.

      --
      Pax Digitalia
  14. Real-world performance doubtful. by yakfacts · · Score: 2

    Any real-time compression technology tends to make me want to run screaming down the hallway

    This product does not promise to double your RAM, but "up to" doubling. Note that it says storage was doubled for "most applications".

    On MicroSloth machines where 3/4 of the memory seems to store arrays of zeros, this could be useful. But the more memory-concious the programmer, the poorer the performance of the technology. In other words, I'm not impressed.

  15. Questioning the viability.. by TheSacrificialFly · · Score: 1

    With the current problems of the SDRAM/RDRAM saga looming, I'm not sure if another compatibility issue is needed. This sounds like it sits on the motherboard, although the article doesn't quite specify this, producing yet another problem into the notoriously unreliable motherboard market.

    At least for home PCs, I'm not seeing this as a real bonus, or a tech that we'll see for quite a while. The market should concentrate on getting a reliable, supported (and preferably non-licensed) RAM tech out and in full production. The more variants of ram being produced, the lower the supply of each one, and therefore higher costs for all.

    tsf.

  16. Double? Maybe yes, maybe no.... But great speed! by ucblockhead · · Score: 2

    With the disk compression utilities, one of the biggest troubles is that the amount that can fit on the disk suddenly depends on the type of data. You get amazing compression rates if you are story textfiles, horrible ones if you are storing GIFs. (The most common compressed file when disk compression was all the rage.)

    This will be similar. Suddenly the amount of memory an application uses is going to be less predictable. Perhaps this isn't much of an issue as with virtual memory, people are increasingly disconnected from application memory usage.

    Because of virtual memory, this is likely to greatly improve the apparent speed of the system, at least in cases where memory is moderately tight. (<128 Meg on a windows box, for example). Disk access is something like three orders of magnitude slower than memory access. If compression avoids even a few page faults, the lower page-file requirements will more than make up for the extra time to compress.

    --
    The cake is a pie
  17. The problem with compression... by OverCode@work · · Score: 1
    ...is that it varies depending on the data. I like to know exactly how much memory I have. Try gzipping a megabyte of text files, and then a megabyte of executables. Sure, the executables will probably compress somewhat, because there is repetitive data there. Text generally achieves a much better compression ratio than machine code. But what about data from /dev/urandom, which is HIGHLY non-repetitive?

    I don't claim to know a damn thing about this memory technology, but what do they intend to do about the unpredictability of compression ratios? You'd end up with a different amount of RAM depending on the application... No thanks.

    -John

  18. Wasn't that what Johnny Mnemonic used? by codefool · · Score: 1

    To double the ram in his head was RamDoubler?

    --
    "Stop whining!" - Arnold, as Mr. Kimble
    1. Re:Wasn't that what Johnny Mnemonic used? by purefizz · · Score: 1

      holly shit! does that mean we have to worry about leakage?!

      kicking some CAD is a good thing

  19. thumbs down. by Signal+11 · · Score: 4

    Strike 1: "IBM Memory eXpansion Technology" BiCapitalization is the first sign of bad tech - it means the marketing people got to it before engineering could get it out the door. It also boils down to yet another meaningless TLA to impress PHBs: MXT.

    Strike 2: fake numbers. "as memory comprises 40 to 70 percent of the cost of most NT-based server configurations" Er, gee, not only is that an absurdly large error margin, but most servers cost, oh, we'll say $2000 and up. 40% of is $800. $800 of PC133 right now is about 640MB of RAM. Most systems in that price range have 256-384. Oops.

    Strike 3: Stating the obvious "and millions of tiny transistors" Oh, and how else would you do it? An analog circuit, perhaps?!

    Strike 4: Not promising: "The new technology is seamless to the end-user because the compressed data can be uncompressed in nanoseconds when needed." Call me a pessimist, but memory right now is around 6ns for PC133. Now, assuming a very conservative 2ns to decode the data, that's 8ns, which is a 25% performance hit. How many admins do you know that would take a 25% hit on performance on their servers to save a couple hundred bucks?

    In short, this new tech is gonna tank.

    1. Re:thumbs down. by ucblockhead · · Score: 3

      . $800 of PC133 right now is about 640MB of RAM.

      Not all memory is in the DIMMS. There are caches everywhere.

      Now, assuming a very conservative 2ns to decode the data, that's 8ns, which is a 25% performance hit.

      You are forgetting what happens when you run out of memory. You page fault, and have to access the block off of disk, which takes something like 9 milliseconds. Getting rid of one page fault for every 1000 memory accesses is going to completely wipe out that 25% performance hit.

      In other words, if you are using any sort of paging file, this will almost certainly improve performance, not hurt it.

      --
      The cake is a pie
    2. Re:thumbs down. by supabeast! · · Score: 2

      "NT-based server configurations"
      "but most servers cost, oh, we'll say $2000 and up"

      What the HELL kind of servers would those be? Quake servers? $2000 might make a decent Linux server, but $2000 is barely a high end Intel based desktop, much less a server. Good NT servers (at least NT servers that handle a large volume of, well, just about anything) cost two to three times that and have at least a gigabyte of RAM. Now that many Intel server buyers are stuck buying RDRAM to get around the horrible problems of SDRAM on an RDRAM mobo, RAM certainly does eat up that much of the cost.

    3. Re:thumbs down. by cperciva · · Score: 2

      Strike 2: fake numbers. "as memory comprises 40 to 70 percent of the cost of most NT-based server configurations" Er, gee, not only is that an absurdly large error margin, but most servers cost, oh, we'll say $2000 and up. 40% of is $800. $800 of PC133 right now is about 640MB of RAM. Most systems in that price range have 256-384. Oops.

      It isn't an NT server, but a 128 processor Beowulf was recently built at the university of British Columbia, and memory comprised 44% of the total cost.

      I don't think that 40-70% is unreasonable at all.

    4. Re:thumbs down. by LNO · · Score: 1
      Technically, that's a 33% performance hit ..

      But you probably won't praise me for my math skills right now.

      Somehow I feel like Wally and Dilbert correcting a female engineer about her paycheck being 75% of a male engineer's but that men make 33% more, not 25% more.

    5. Re:thumbs down. by MrBogus · · Score: 1

      Strike 2: fake numbers

      A quick trip to shop.ibm.com
      1
      Netfinity 3500 M20, single PIII @ 800Mhz
      with 128MB -- $2,430
      with 512MB -- $3,554 (This is what we install our NT systems with nowdays.)

      So, with 384MB costing $1124, that works out to $2.93/MB, or $1499 for the total memory in the system, which works out 42% of the total system cost.

      I picked the 3500 because it's about the lowest end 'server' you can buy from IBM (it's in a workstation case). I would only imagine the prices of OEM memory goes up as the system get bigger. Of course, buying direct is cheaper (if you look at the purchase price alone), but our shop is one of those places that purchases manufacturer-supported servers from the big tier-1 vendors.

      --

      When I hear the word 'innovation', I reach for my pistol.
    6. Re:thumbs down. by ddstreet · · Score: 1

      In other words, if you are using any sort of paging file, this will almost certainly improve performance, not hurt it.

      Any admin that sets up a server without enough memory to avoid using swap (except under really high load) is not doing their job. Obviously any paging is going to kill performance whether compressed memory chips are used or not.
      It would be much better to simply buy more normal memory than rely on better paging performance.

    7. Re:thumbs down. by chrysrobyn · · Score: 1
      Somebody needs to remember to have his cup of coffee before posting to Slashdot...

      Strike 1: "IBM Memory eXpansion Technology" BiCapitalization is the first sign of bad tech - it means the marketing people got to it before engineering could get it out the door.

      What with all the neat stuff we've seen IBM do lately, why do you assume that marketing got to it before the engineers were at least positive it was feasible? With their reputation, I think it's safe to say that marketing got their numbers from the engineers.

      Strike 2: fake numbers. "as memory comprises 40 to 70 percent of the cost of most NT-based server configurations" Er, gee, not only is that an absurdly large error margin, but most servers cost, oh, we'll say $2000 and up. 40% of is $800. $800 of PC133 right now is about 640MB of RAM. Most systems in that price range have 256-384. Oops.

      This is IBM. Big Blue. When they talk cost, they talk cost to them. Your estimated memory cost is a bit different than theirs. You know-- they're the people who advertise on prime time TV to sell SERVICES.

      Strike 3: Stating the obvious "and millions of tiny transistors" Oh, and how else would you do it? An analog circuit, perhaps?!

      Some people actually need the obvious stated, and there can be no room for assumptions.

      Hate to break it to you, but do you think that your pretty 1GHz Pentium IV is purely digital? Those FETs are going from purely on to purely off the entire ride? Sorry. The DC component of those circuits are part of why x86 architecture processors act as space heaters. You can save all sorts of time if you don't wait for a rail to rail voltage swing.

      Strike 4: Not promising: "The new technology is seamless to the end-user because the compressed data can be uncompressed in nanoseconds when needed." Call me a pessimist, but memory right now is around 6ns for PC133. Now, assuming a very conservative 2ns to decode the data, that's 8ns, which is a 25% performance hit. How many admins do you know that would take a 25% hit on performance on their servers to save a couple hundred bucks? In short, this new tech is gonna tank.

      I'm willing to assume for a moment, that you know what you're talking about, and that such simple algorithms as compression DO actually take 2ns to work (which is utter BS because we're talking about on-chip logic which happens to be just before the latches to permit the data on the bus-- somehow this logic counts as a whole THIRD the worst case path to actually get to the memory cell), and point out that, if you do actually see the 50% compression that most people see (remember even Stacker saw that), you just moved TWICE the amount of data in your 8ns than someone who moved in 6ns. Higher latency, yes, for the first word. Remember-- we're probably going to be moving another word after that.

      If you're going to criticize, stick to the OS implications.

    8. Re:thumbs down. by Kris_J · · Score: 1
      Any admin that sets up a server without enough memory to avoid using swap (except under really high load) is not doing their job
      I wish I had your budget!
    9. Re:thumbs down. by Signal+11 · · Score: 1

      What with all the neat stuff we've seen IBM do lately, why do you assume that marketing got to it before the engineers were at least positive it was feasible?

      See previous post.

      You know-- they're the people who advertise on prime time TV to sell SERVICES.

      Interesting you should go out and quote them on their hardware prices, then call them a service company. Me thinks perhaps one might get a better deal by purchasing memory from a dedicated reseller with lower overhead?

      Hate to break it to you, but do you think that your pretty 1GHz Pentium IV is purely digital?

      They're grouped into bytes of 8,16,32, and 64 bits. bits are digital, either one or zero, aka binary. I don't know what goes on in between, but what goes in and what comes out (also known as I/O) is digital.

      Higher latency, yes, for the first word.

      Erm, as I recall, memory was designed to be really fast so we didn't need to go to the drive all the time. Something about "caching" data for faster access... faster *random* access. I didn't know that in your world, memory was serial. But if it was, that model would work great!

      You see, memory is designed around low latency - there's 'nuff bandwidth for PCs to meet today's needs, so we need to focus on latency. Larger latency means more time before the CPU can do something with the data. That means another few cycles for each chunk of memory that it needs to sit around idle and do nothing. Eh, atleast that's what I heard.. but I could always be wrong! Afterall, x86 just ain't what it used to be.

    10. Re:thumbs down. by ddstreet · · Score: 1

      Hmm...so you don't have enough $ for more (normal) memory, but you DO have enough $ for hardware-compreessed memory? O-k...
      Point is, unless this costs as much as normal memory, and is as fast as normal memory, it just isn't worth it.
      Whether or not you're poor.

    11. Re:thumbs down. by Kris_J · · Score: 1
      so you don't have enough $ for more (normal) memory, but you DO have enough $ for hardware-compreessed memory
      No, I simply don't have enough money to have enough memory to not have a swapfile. (Independant of that, I (irrationally?) think it's a cool idea.)

      But lets say that I am looking at a budget and a purchase. Lets say I knew my application/solution would need 256MB of RAM and I could afford 196MB of real RAM or 128MB of real RAM plus the doubler. I'd be tempted to do the doubler thing, not least because from then on extra RAM gets doubled.

      Seriously, it's not like anyone's going to be forcing people to use this compression system - if you don't like it don't use it. If it's like the other compression systems it's really cool on a new overpowered system, but starts to suck as the system ages and the load increases - on the other hand it can make some things possible on hardware it would otherwise be impossible to do them on.

    12. Re:thumbs down. by mr3038 · · Score: 1
      need 256MB of RAM and I could afford 196MB of real RAM or 128MB of real RAM plus the doubler

      If you can afford 128MB ram and a application/solution that requires 256MB I'm pretty sure you can afford that another 128MB also. Everybody seems to agree that scsi (and raid?) are required for servers - now how can you guys buy that scsi adapter but cannot afford 512MB of memory?

      Only case where this makes sense is when your hardware cannot support required amount of memory - say you have x86 platform with 2GB of memory and your mobo cannot support more. If your requirements are 2.2GB compressing would be the solution. However I would suggest better mobo in case like this.

      Hardware for swapping could be much better idea. Though I cannot imagine how hardware (in MMU?) could make swapping faster if you are still using same hard drives. Perhaps specialized harddrive for swapping (smaller and faster) and own bus for swapping. But things like that costs and you could buy real memory instead.

      Bottom line: having enough real memory is the only way to go.
      _________________________

      --
      _________________________
      Spelling and grammar mistakes left as an exercise for the reader.
    13. Re:thumbs down. by Kris_J · · Score: 1

      Seriously, where do you guys work? I'm in a medium sized company and we don't have oodles of money to spend on all this fancy, shmancy, RAID stuff. The servers are the minimum needed to do the job under ideal conditions with some level of (acceptable?) risk when it comes to protection of data - basically a DDS3 drive and nightly backups. There is so much I'd like to add to these computers but I just don't have the money.

    14. Re:thumbs down. by ddstreet · · Score: 1

      If you can't afford SCSI, more memory, or RAID...then why the hell are you going to buy hardware-compressed memory?!? Just buy more normal memory with the cash. The only case I can see is if the hardware-compressed memory costs (example) twice as much and gives twice or more virtual memory a lot (75+%, I'd say...) of the time (and that's not considering speed loss)...however I really doubt it's there now. And of course any paging when memory runs out is going to hurt bad.
      And if you have gobs of cash to spend on memory then obviously more memory is the better option...

  20. Re:Does that mean software compression is now moot by yakfacts · · Score: 2

    Software compression in RAM, or on disk? Software compression on disk is, of course, unchanged. Compressed data structures in RAM will now bloat...so you will be penalized for using them. That is why I hate forced compression.

  21. This is not NEW!! by X · · Score: 1

    This kind of technology has been around for ages, and it's been sold commercially. Products like RamDoubler and the like were very popular during the 90's for exactly this reason.

    I don't understand what's supposed to be unique about this technology.

    --
    sigs are a waste of space
    1. Re:This is not NEW!! by yakfacts · · Score: 1

      But those other schemes were in software, and slow...and therefore usless for high-performance machines. This will be in hardware, therefore a lot faster...but still useless for high-performance machines.

    2. Re:This is not NEW!! by exploder · · Score: 2

      What's so new is that it's implemented in hardware. The article claims approximately 4 orders of magnitude better performance than a software solution. Of course, whether that's enough to make it worthwhile is not addressed.

      --
      Yo dawg, I heard you like the Ackermann function, so OH GOD OH GOD OH GOD
    3. Re:This is not NEW!! by ucblockhead · · Score: 1

      Not to mention that it can be used in places software can't, like disk or CPU caches.

      --
      The cake is a pie
    4. Re:This is not NEW!! by X · · Score: 2

      Ok. Even if it's done in hardware this kind of thing has been around for quite some time. The Hobbit processors do this, along with a slew of other embedded processors.

      One thing to think about is how much faster is a hardware implementation really? Time and time again general purpose CPU's seem to kick the butts of dedicated hardware in all but the most esoteric cases (like encryption). If it's done by the CPU then the data you need is already in the L1 cache and possibly in registers, all while avoiding pain for the outer caches. Then add in architectures like EPIC which have nothing better to do with some of their units anyway...

      I don't know, I don't know if IBM's claims will pan out.

      --
      sigs are a waste of space
    5. Re:This is not NEW!! by Kris_J · · Score: 2
      Time and time again general purpose CPU's seem to kick the butts of dedicated hardware
      Only if that's the only thing they're doing. Most of my portable's CPU time is taken up playing MP3s. If I could farm that task off to dedicated hardware then I'd have more CPU time for whatever, disk compression maybe (or D.net or SETI@home ;).

      Also, I'd tend to think that the dedicated hardware accelleration in today's video cards is not especially esoteric...

    6. Re:This is not NEW!! by X · · Score: 1

      True enough, if you CPU is already loaded you're screwed, but that's what SMP is for. ;-) Seriously, by using a general purpose CPU you tend to have more flexibility and power available to you. It's amazing what a difference it makes.

      Your example of the hardware excelleration is interesting, particularly since the direction they are going tends to be towards full-bore CPU for graphics (hence the silly term GPU), much as SGI did ages ago. To the extent that this is not true I'd argue a lot of the lower-end graphics stuff is really not processing (the kind of thing that would burn up a CPU), but rather some simple ASIC functionality.

      Basically the one area where CPU's can get their butts kicked is DSP. However, even against a DSP, after the DSP has worked on the data it needs to be handed up to the CPU, whereas when you use a CPU it's basically right there. Depending on what you're doing (and this seems like such a case) this may be a significant advantage.

      Another way to look at it is to compare using your CPU for PPP compression/decompression vs. dedicated hardware. Your CPU has more power, can adjust how much power it applies to allow better application performance as the situation justifies it, and can easily have new algorithms installed.

      The one thing that WOULD be cool would be if this was all done in the highly-parallel MMU of a CPU.

      --
      sigs are a waste of space
  22. I can't wait for the advertising by SIGFPE · · Score: 2

    Remember how for about a year or so manufacturers advertised that they were selling computers with 200Mb hard drives but when you looked in the small print it said "With XXX installed" where XXX was some disk 'doubler'? I guess we're going to get a year of companies misleadingly trying to sell 1/2 Gigabyte PCs claiming they're Gigabyte PCs. You have been warned!
    --

    --
    -- SIGFPE
    1. Re:I can't wait for the advertising by pantherace · · Score: 1
      I can't wait until some geek goes to the dark side (marketing) and says "128 Megabytes is not impressive. hmm... 1024 Megabits of RAM"

      And aside from moderately intelegent people, who will notice?

      Wine - the replace ment for Redmond

    2. Re:I can't wait for the advertising by Sloppy · · Score: 2

      It's already standard practice with tape drives, no need to remember way-back-when. Every single tape drive on the market is advertised as having twice as much capacity as it really has. (One of my pet peeves.) Yes, it would suck if that happened to the RAM market too.


      ---
      --
      As copyright owner of this comment, I authorize everyone to defeat any technological measure which limits access to it.
    3. Re:I can't wait for the advertising by Kris_J · · Score: 2
      Tape drives are advertised with two numbers - uncompress/compress, ie; 4/8 for DDS2 or 12/24 for DDS3. This tells you that there is a hardware (or simply transparent) data compression system somewhere in the pipeline. I typically expect a 1.5x increase on data of Office97 or later vintage (Word and Powerpoint 97 save images compressed, Pre-97 versions save images uncompressed). Thus I would consider a 4/8 to give me about 6Gig, a 12/24 to give about 18Gig.

      If there was a similarly transparent (including no noticable performance hit) RAM compression technology built into a system or a SIMM then I wouldn't object to a 64/128 or similar description.

      However, advertising just the compressed size is immoral and deceptive...

  23. compressing a zip? by purefizz · · Score: 1

    well, be prepared for the devil of details! Memory Expanders in hw are cool, but there must still be the hidden gotchas, like zipping a zip makes the file larger not smaller. Not to mention overhead, with additional operations needing to be executed this ram surely can't be faster. Though, I bet its faster than swap. ;)

    kicking some CAD is a good thing

  24. pricing by styopa · · Score: 1

    Now, here is a curious question. At what point does this actually save you money? For all we know this thing could cost more than what the average user would need to spend in order to double their ram. Heck, if this thing cost even $175 it wouldn't be worth it for me to buy it, yet.

    This is great for server news but from what I have read, most of the people here seem to think this will be great for their PC. Maybe in a couple of years when we need more ram to do whatever we are doing or after the price goes down

    --
    Disclamer - Opinion of Person
  25. Nintendo 64 Does This by John_Booty · · Score: 1

    This is so cool!

    I think that Nintendo64 might do this too, as funny as that sounds. The data on the ROM cartridges is compressed, I know that much for sure. I'm pretty sure it's decompressed at real-time when it's accessed, but I don't remember if it's done by hardware or by software routines.

    Can anyone verify this- whether the N64 does it hardware or software?

    --

    OtakuBooty.com: Smart, funny, sexy nerds.
    1. Re:Nintendo 64 Does This by John_Booty · · Score: 1

      <SARCASM>Suuuuuure! Just like your web browser is in hardware, since it's running on your CPU, which is a piece of silicon. </SARCASM>

      Annnnnnnyway, for those of you that have some sort of interest and/or clue, I'm still trying to dig up some specs on the N64 to see if it decompresses in hardware or not... I just think it's neat when companies make some multi-million dollar announcment about some technology that was pioneered in video games. :-)

      --

      OtakuBooty.com: Smart, funny, sexy nerds.
  26. Heat / Power problems? by seldolivaw · · Score: 1
    I agree that a RAM-doubling chip would be a great idea for notebooks: apart from anything else, wouldn't a chip that doubles your RAM take up less space than that much more RAM, especially on a 'book with 128MB?

    However, what about heat/power problems? Does this chip use more power and/or generate more heat than the same amount of RAM? You'd have to be careful that you give yourself twice as much memory and half as much time to use it. On a desktop/server, of course, this wouldn't be a consideration.

    Finally, I notice the article says the hardware-based memory compression is "10000 times faster than software-based solutions"... but no mention is made of how it compares in speed to actual RAM. Anybody got any details?

    1. Re:Heat / Power problems? by exploder · · Score: 1

      I believe that most ASIC's (other than moster graphics processors) consume far less power and produce far less heat than the main CPU (or a hard drive for that matter). Any increase in power use and/or heat production of this technology as compared to the RAM it's replacing will be trivial relative to that of the system as a whole.

      --
      Yo dawg, I heard you like the Ackermann function, so OH GOD OH GOD OH GOD
  27. It's copmetitive bait, and it's needed! by AustenDH · · Score: 1

    We need any compnay we can get to startexploring alternatives in memory technology. Whatever happens in the near future, if Rambus has its way, it really won't matter what platform you are using. RAM is gonna ream you either way.

    So... IBM taking steps to look into and promote alternative memory technology will probably result in other companies doing the same, so that no one will have to pay implant prices for their silicon.

    And... Welcome to the Rambus competition IBM! Really! I appreciate it!!

    1. Re:It's copmetitive bait, and it's needed! by Frymaster · · Score: 1
      And... Welcome to the Rambus competition IBM! Really! I appreciate it!!

      Be careful when you welcome IBM to a new arena... rmember Apple's "Welcome IBM... Seriously" ad when the PC debuted? Sure, IBM isn't the batch-processed, sta-prest juggernaut of yore, but they can still come into a new market, clobber everybody with an inferior "standard" and go back to making adding machines after the whole market is dragged, kicking and screaming, down to the lowest common denominator.

      Feel free to mod me down if you wish... I was on a karma roll anyway.

    2. Re:It's copmetitive bait, and it's needed! by AustenDH · · Score: 1

      Well yes, of course they can. However, I think that anyone who takes a point to compete with Rambus and offer an alternative is a good thing. Yes, IBM has the resources to exploit the market, in many of the same ways as Microsoft did, they can just buy the technology from its designers. So in that respect, what difference does it make who builds it? As long as it forces Rambus to wake up, and re-think its 'screw all manufacturers and consumers' plan of action.

      Just my opinion. Nothing more. Until God him/herself comes down and blesses the computer industry, I'll take the lesser of the evils, whomever they might be, as long as I didn't hate them to begin with!

  28. Latency vs. Bandwidth by Guppy · · Score: 3

    "This would rock on the PC, where our bus speeds are slowly reaching 133mhz. If you could send the data compressed across the bus, that is."

    Maybe, but I'll bet there will be a fairly large impact on latency, with the overhead needed for compression/decompression. Bandwidth is more important for some kinds of memory-intensive applications, like database and photo/video editing stuff. But for everyday applications or games like Q3, the latency is going to knock your performance way down. It's one of the problems with Rambus, where the bandwidth improves but latency actually gets worse.

  29. Doesn't seem all that revolutionary. by Sangui5 · · Score: 1

    Looks like they are just adding a L3 cache, and than putting ramdoubler into hardware.

    Of course, compressing/decompressing data in hardware very quickly (nanoseconds) is a lot better than being forced to go to swap (microseconds to milliseconds). Still, modern processors tend to take very big performance hits whenever a little bit of lag is introduced. The people at IBM aren't idiots though, and I suppose that keeping the lag down is what the L3 cache is for.

  30. Who is the target audience? by MotownAvi · · Score: 1

    Hey, memory isn't cheap, but not that expensive. Who are they aiming for? People who don't use their computers much don't need this extra memory. People who need all the memory they can get either are working with large amounts of non-compressible data (huge files like graphics, archives, etc.) or people who would be worried if compression failed.

    And I still don't know how this works. If I ask for n bytes, and the hardware allocates me n/2 bytes, what happens if I load something non-compressible? Something has to give.

    Wouldn't touch this with the 10-foot stick I keep around for these purposes.

    Avi

  31. Performance Hit? by wiredlogic · · Score: 1

    The article glosses over the performance penalty of using this hardware memory compression. I would venture to guess that the latency would increase on reads from decompression delays. The question is how much would this be? This is an important issue considering the targeted server market.

    It seems that any performance penalty would be moot once the amount of stored data exceeded the true capacity of your memory. At this point the compression would be offering a real benefit by avoiding disk paging.

    --Wiredlogic, Remembering Mac RAM compression (in SW)

    --
    I am becoming gerund, destroyer of verbs.
  32. Re:Does that mean software compression is now moot by Ranger+Nik · · Score: 1

    yes, it does mean software compression is moot. duh. also, it won't "double" your memory - god, how i hate that claim. such bullshit.

  33. Re:thumbs down. (Maybe not) by exploder · · Score: 2

    Call me a pessimist, but memory right now is around 6ns for PC133. Now, assuming a very conservative 2ns to decode the data, that's 8ns, which is a 25% performance hit.

    Well, let's say that the stated 2:1 compression ratio is acheived. Now we're moving twice as much data in 133% of the time, which is a 33% performance gain. (2x the data in 8ns, equivalent to same data in 4ns, as compared to the original 6ns.) The break-even point for 2:1 compression is a 2:1 slowdown in performance. If the compression averages 1.5:1, then the performance must be no worse than 1.5x as slow in order to avoid degrading access time. Can the average performance cost ratio go below the average compression gain ratio, and actually increase performance? If not, then how close is tolerable? I'd say there's room for this technology to be of value, especially as stated in the article, in servers with enormous amounts of RAM.

    --
    Yo dawg, I heard you like the Ackermann function, so OH GOD OH GOD OH GOD
  34. Sounds good, But.. by toast- · · Score: 1

    How much will it cost to implement this technology? WILL it be worth it?

    Will rambus find a way to sue IBM and force them to pay royalties thus driving the price of this new technology past a cost effective point?
    (i know it's not likely, but shit rambus is trying to fuck everyone over right now)

    If my previous statement is false (and I hope it is) this COULD be good if rambus-ram stays at a high price level. It could leverege existing technologies against rambus and give the consumer a tool to fight corporate greed. (But intel seems to be forcing this down our throat)

    It will be interesting to see what develops. Until then, i'm buying more ram for my machine(s) now before SDRAM becomes 'rambus-forced-expensive'

  35. Useless by Anonymous Coward · · Score: 1
    Everyone knows that pr0n jpegs are already compressed and cannot be compressed any further. Therefore the technology is useless.

  36. Speed Hit? by Dungeon+Dweller · · Score: 2

    I use RAM because it's fast, if we didn't care about speed, we would all be writting to our hard drives and have about 2 megs of RAM and just use swap partitions for all of our memory needs. This won't last because, no matter how fast it is, it will be faster to write straight to the RAM.

    --
    Eh...
    1. Re:Speed Hit? by ucblockhead · · Score: 1

      Faster to write straight to RAM, assuming that you haven't run out of RAM and are actually writing to swap partition...

      So unless you've turned off virtual memory, you might want to rethink your position.

      --
      The cake is a pie
  37. Will compressed RAM degrade or improve perf? by PeterM+from+Berkeley · · Score: 1

    I can easily see more latency coming out of
    RAM compression/decompression: you have to
    actually do all the computation. However,
    if the data coming across the memory bus is
    compressed 50%, then you can get 2x throughput,
    so that you can double your bandwidth at the
    cost of some extra latency.

    The big question is how bad is the latency? If
    it is too bad, then performance will suffer. If
    it is fast enough, then performance may
    actually *increase*.

    PeterM

  38. Combine with RDRAM for the worst latency possible! by supabeast! · · Score: 1

    Imagine the extra latency this creates added to the insane latency of RDRAM. This might have some nice applications, but not in the coming server market of Intel chipset based P-III Xeon mobos that need Rambus modules to avoid the problems that come from using SDRAM in RDRAM mobos. Talk about poor performance.

    The upside is that, when combined with those nice upcoming DDR/Athlon servers, where an extra few nanoseconds won't be nearly as bad, this could be a decent option, if the data one is using can lends itself to compression well.

    The downside is that we sure as hell can't expect to see this used to cut costs on high end video cards. Damn.

  39. On-The-Fly Compression of Hardware? by cburley · · Score: 1
    The upshot seems to be on-the-fly compression in hardware

    ...which immediately brought to mind the "death by frogs" scene from the movie "The Abominable Dr. Phibes" starring Vincent Price.

    In this scene, the victim is persuaded to wear a large frog's head to a costume ball.

    Of course, he doesn't know that the clasp is designed to slowly tighten over time, and cannot be opened...

    ...but I guess that's more like "on-the-frog compression of memory hardware"!

    Also, "chip-based compression" is probably already patented by the makers of Pringle's Potato Chips.

    --
    Practice random senselessness and act kind of beautiful.
  40. A small test by PD · · Score: 3

    I took a snippet from /proc/kcore and compressed it to see how well it would work.

    dd if=/proc/kcore of=/spare/mem bs=1 count=1000000

    that resulted in a chunk of kcore 1 million bytes long written to the file /spare/mem

    bzip2 -9 /spare/mem

    that resulted in a file named mem.bz2 being 349791 bytes long.

    This was on your typical RedHat system running the usual stuff.

  41. Re:thumbs down. (Maybe not) Wrong. by Anonymous Coward · · Score: 1

    Well, let's say that the stated 2:1 compression ratio is acheived. Now we're moving twice as much data in 133% of the time, which is a 33% performance gain

    No it is not, you are not moving twice as much
    data.
    The data rate is still the same. what has increased
    is the total amount of memory.
    the interface from memory to cpu is still the
    same, (or has IBM doubled the bus of the Pentium? also).

    Now the question is what is more important to you
    total ram size, or the increased latency of memory.

    (latency not bandwidth as the first poster was also wrong).

  42. Reread what I wrote by Dungeon+Dweller · · Score: 1

    What I was saying, is that I want my memory fast, if it could take all day to write... I would write to swap, but since it can't take all day, I write to RAM, therefore, I don't want to write it to swap, therefore, I use fast memory, and wouldn't compress it, because this will take up time, and make the system slower. I don't need to rethink my position, since what I am saying is, I use RAM, because it is fast, I don't use virtual memory (when avoidable) because it is slow. Why would I want slow memory? Get it?

    --
    Eh...
    1. Re:Reread what I wrote by ucblockhead · · Score: 1

      The vast majority of systems out there today use paging files.

      This would cause a dramatic reduction in page faults on that vast majority of systems.

      Get it?

      --
      The cake is a pie
  43. interesting, maybe. by Phexro · · Score: 2
    i recall the days when you could get software to solve any number of hardware problems. not enough ram? get ramdoubler. not enough disk space? get stacker. computer not fast enough? get 386to486.exe!

    a rule-of-thumb i recall from that era was something along the lines of: 'software solutions to hardware problems are impractical'.

    the fact that they do the compression in hardware may have some merit. so i did a bit of testing; i checked the sizes of /proc/kcore, and the size after piping /proc/kcore through gzip and into a file.

    on my 32mb box: (4944k used, not counting cache)

    compressed uncompr. ratio uncompressed_name
    18796861 33558528 43.9% kcore


    on my 192mb box: (144872k used, not counting cache)

    compressed uncompr. ratio uncompressed_name
    99302828 201265152 50.6% kcore


    figures are probably quite skewed, since the core image was not a snapshot. but it looks like the actual used memory compresses better then the bit-soup that is in the dimms when the system powers up.

    who knows... maybe ibm has a few tricks up their sleeves. be interesting to see some linux source to deal with these beasts... i'm assuming that it's os-dependent, and since ibm has been great about linux lately, i'd think they would release whatever kernel patches would be necessary to use these things.

    --

    1. Re:interesting, maybe. by FigWig · · Score: 1

      You forgot the l33t w4r3z that would turn a 2400 bps modem into a 9600.

      The only one of these dubious apps that I used was the disk doubler thingy. I grew to hate the misreported free space, and completely abandond it when the whole partition (actually a single compressed file) was inexplicably hosed.

      --
      Scuttlemonkey is a troll
  44. Preventing memory expansion; cache block sizes by billstewart · · Score: 2
    A standard hack that on-the-fly compressors use is to keep a flag bit indicating whether a given chunk is compressed or uncompressed. That way you can avoid the problem that recompressing already-compressed data often grows, at the cost of a flag. On the other hand, if most of your data is compressed anyway, like web servers caching lots of JPEGs, you still don't win, and you're hauling it uncompressed on most of the busses anyway.

    I am interested in how big a block of memory this stuff operates on. Compressing a few K at a time, such as a disk block, may be big enough to win, but compressing a 128-bit cache line almost certainly loses. Where's the breakeven point? The hope of this technology is that if you stick it way out in L3 cache, you're usually hauling big enough chunks at a time that the decompression latency for getting the first byte is made up for by the bandwidth of getting the rest of the bytes from a smaller amount of memory.


    Help, help, I'm being compressed!

    --

    Bill Stewart
    New Fast-Compression-only CPR http://preview.tinyurl.com/dy575ks
  45. What this actually is... by ucblockhead · · Score: 5

    Is a caching system. From the article:

    MXT is a hardware implementation that automatically stores frequently accessed data and instructions close to a computer's microprocessors so they can be accessed immediately -- significantly improving performance. Less frequently accessed data and instructions are compressed and stored in memory instead of on a disk -- increasing memory capacity by a factor of two or more.

    Note two things: They are not compressing everything. They are not replacing the actual memory.

    Most of the criticisms here are based on misunderstandings of those two things.

    (Note that I'm guiltless. I posted a number of times before getting around to read it.)

    --
    The cake is a pie
    1. Re:What this actually is... by ucblockhead · · Score: 1

      Oops. That should be. "Not that I'm guiltless" not "Note that I'm guiltless"!!

      --
      The cake is a pie
  46. Re:ax. Safety. by Monte2 · · Score: 1

    Hey, thanks for not being able to understand what the FAQ said. This brings up a valid point, which is that so many FAQs are just unreadable to the general viewing, hairy-palmed, public.

    So, this leads us to an intuitively obvious suggestion reguarding the moderation system: it can be totally done away with, if only a similarly obscure and inscrutable document must be read and irritatingly followed to allow access to slashdot. The instructions should clearly include several mathematical formulae, at least ten words with four or more syllables, and a few misdirections for good measure. That should keep us good and clean.

    --
    -- They were frivolous and often danced on the roof. --
  47. Big RAM in Database, Web servers by billstewart · · Score: 1

    No, a file server for your department doesn't need moby RAM. But a large web server or a enterprise-sized database server both win by using lots of RAM to cache data, because RAM really has a few orders of magnitude faster throughput than disk drives, and the latency is much lower which makes a lot of difference for databases. Even a few years ago, it made sense to toss a GB of RAM into a database server, and now that that's only $1000 or so, it usually makes sense to buy more.

    --

    Bill Stewart
    New Fast-Compression-only CPR http://preview.tinyurl.com/dy575ks
  48. Laptops by bbaskin · · Score: 1

    Seems like if the codec hardware is "low power" compared to the RAM you might save, not to mention packaging space, that this technology might have some valid uses in laptops and other portables. This is doubly true considering the slower nature of most laptop hard drives and thus their page file.

    Bryan Baskin

  49. Re:ax. Safety. by zeck · · Score: 1

    Wouldn't work. Someone would leak a simplified version.

  50. Re:thumbs down. (Maybe not) Wrong. (Not wrong.) by exploder · · Score: 1

    No it is not, you are not moving twice as much data. The data rate is still the same. what has increased is the total amount of memory.

    Actually, my original post is correct. Since the RAM latency we're talking about is on the back end of the RAM-doubling chip, we're only moving half (or whatever fraction) of the data to the physical RAM. You are correct that we're still moving the same amount of data over the bus, but the bus is not where the latency lies.

    --
    Yo dawg, I heard you like the Ackermann function, so OH GOD OH GOD OH GOD
  51. Compress before swap by MrChips · · Score: 1

    When an OS runs short on RAM, maybe it should first attempt to compress LRU pages. Only once some threshold percentage of RAM is compressed, would it start swapping, and obviously the first pages to be swapped out will be the ones that are compressed, so you get more pages out to disk in a given time.

    Although compressing pages when there are few CPU cycles to spare may not a good idea, often when a machine starts to swap, CPU utilization drops so there would be cycles to spare. Remember that swapping a single page can cost millions of CPU instructions. If you can compress/decompress a page in fewer instructions, it might be worth it. Hardware accellerated compression would be nice, but maybe not needed.

    For fast compression, see: http://wildsau.idv.uni-linz.ac.at/mf x/lzo.html.

  52. Apps that could use doubled size AND microdrive? by martyb · · Score: 1

    A recent announcement from IBM mentioned here on /. was that they were coming out with microdrives with 512 MB and 1GB capacities.
    Several posts have pointed out how there are many cases where compressing pre-compressed data ends up using more space; but let's try looking at it from the other side... what applications could most benefit from this technology?

  53. It's just another speed of RAM by DarkMan · · Score: 1

    Actually, the speed of theram is less of an issue these days.

    Consider the typcial desktop PC:

    It will have: an L1 cache right next ot the processor - fastest ram.

    L2 Cache somewhere very close, bigger, not quite as fast, but slightly cheaper.

    DRAM's: Slower still, but still pretty fast, relativly cheap

    Hard drive (Virtual memory): Slowest (realistacally, yes, you _could_ use a floppy as virtual), cheapest.

    All this would do would be to give another layer inbetween the main DRAM's and the hard drive. With an appropriate caching and paging algorithm, this could be made _almost_ as useful as ordinary DRAM on a MB for MB ratio, provided only some of it is compressed.

    For example, you might have the kernel store a process that is used once every second in the compressed ram, rather than the main DRAM. And so on.

  54. Re by Dungeon+Dweller · · Score: 1

    That glances over the point entirely, when what I was saying was that faster RAM == BETTER RAM, and you know it.

    --
    Eh...
    1. Re:Re by ucblockhead · · Score: 1

      A faster system is a better system. All the rest is implementation details.

      Fixate on one part of the system (like RAM speed) and you end up with a system that spends all its time waiting.

      --
      The cake is a pie
    2. Re:Re by Dungeon+Dweller · · Score: 1

      Supposing that you can afford sufficient memory, wouldn't you rather go with uncompressed memory? Maybe put one module of compressed in last just to make sure? I could picture this memory serving THAT purpose, but surely you would prefer to have the fastest memory possible GIVEN that it is of satisfactory quantity.

      --
      Eh...
    3. Re:Re by ucblockhead · · Score: 1

      Sure. And I'd prefer a Ferrari to the old Honda I drive.

      But somewhere in the equation money comes into play.

      --
      The cake is a pie
  55. 3:1 a bit optimistic by Wesley+Felter · · Score: 2

    RAM compression isn't going to deliver compression ratios as good as stream oriented algorithms like deflate and bzip2, because it has to be random-access and the compressor doesn't have as much context to look at.

    But as you pointed out, memory tends to be pretty compressible because of the significant redundancy.

    1. Re:3:1 a bit optimistic by jonathanclark · · Score: 1

      This is especially true with bzip2 which uses very large dictionaries. But the sample above only tried to compress the first 1MB of data - which is probably the kernel. I expect that user data is much more compressable - being that it would contain a number of zeros, spaces, and text. Of course this all depends on the data. If you have mostly JPG porn images loaded into ram you aren't going to get any compression.

  56. Re:Does that mean software compression is now moot by Fizgig · · Score: 1

    Maybe I'm remembering wrong, but wasn't it that RAM doubling product which didn't do anything? It had dials and stuff and claimed that it increased your memory, but it didn't do ANYTHING. Or maybe they've come up with doublers that work now. Has there ever been a successful memory compression program?

  57. Re:It won't last (it will if they keep it updated) by Kris_J · · Score: 2
    The reason I stopped using Drivespace(3) was that MS never made a FAT32 compatible version, not because I decided that it sucked.

    Bias Disclaimer: I think that predominantly transparent compression of a large storage area rocks. I'm also a huge fan of decicated hardware accelleration. Thus I think this is the sort of cool idea I'd want regardless of whether or not it actually works.

    That said, this should provide some performance increase to any system with a swap file, like my little portable (not that it can be retro-fitted) - but I would like to know how the OS will deal with a variable memory size...

  58. ...Faster than swap by Octagram · · Score: 1

    I wonder if this could be implimented in software for older hardware where the software compresion overhead is still faster than swap! Just make a ramdisk and do compressed writes and reads.

  59. OS support is not needed (was Re:ALERT! danger!) by StevenMaurer · · Score: 1

    While compression cannot guarantee anything better than a 1:1 ratio (note change in emphasis), the system IBM has outlined does not require it.

    What IBM is proposing is nothing more than a compressed-RAM disk-cache, in combination with a LRU memory cache for frequently used data. If the compression fails, at worst all you have done is to put an unnecessary step into saving your data to disk. It doesn't require OS support to work, or even the OS to know about it.

    This also has been done before by various disk-controller manufacturers. I'm afraid this probably won't keep IBM from trying to patent the entire technique tho :-(

  60. Heat/Power can actually drop by nh4no3 · · Score: 1
    "MXT incorporates a new level of cache designed to handle data and instructions on a memory controller chip.", ie strictly more hardware and bus traffic, so the power drain for IBM's present implementation must be higher if the same number of DRAMs are used.

    Power consumption can actually drop if the codec logic is placed directly on the DRAMs and chipset, such that only compressed data goes over the system bus. Pushing signals on off-chip busses takes a good amount of juice, and having 1/2 the number of DRAM chips adding parasitics to the memory busses helps a lot too...

    -nh4no3

  61. Re:Does that mean software compression is now moot by Shimbo · · Score: 1
    Compressed data structures in RAM will now bloat...so you will be penalized for using them. That is why I hate forced compression.

    You always turn it off on your modem then? I'm no hardware guru but the obvious implementation to me would be to tag the pages like a cache. You only need to add 1 'uncompressed' bit per page, and you can keep that separately from the bulk memory. And a lot of the time, unless you are just moving the bits around, you will have the data uncompressed in memory anyway.

    I think a lot of people here are getting hangups over various nontransparent software compression schemes they have used in the past on DOS.

    I'm waiting for the next post: data caches are an awful idea. Cache thrashing means that worst case, they work worse than plain old memory. Let's keep our machines simple and build them all with flat, fast memory like a Cray.

    Look at current trends in computing: hardware RAID use is growing, graphics cards are getting more complex, Gigabit NICs often implement IP checksumming in hardware. The future's here, and it's in custom silicon!

    Seifert's law of networking also applies here: 'design for the typical case, not the worst case.'

  62. MP3 Players by ArchieBunker · · Score: 1

    One of the most common drawbacks of pocket mp3 players is their lack of storage. Maybe this will help, but then again mp3 files are already highly compressed.

    --
    Only the State obtains its revenue by coercion. - Murray Rothbard
    1. Re:MP3 Players by tedtimmons · · Score: 1

      MP3s are already very highly compressed.

      -ted, MP3.com software engineer

  63. NVidea is already doing this with graphics cards by a-freeman · · Score: 1

    I recall a story from Tom's (or Anandtech, or one of those), the newer "annihilator" drivers are supposedly already doing something like this. (it was a beta win '98 driver that was mistakenly released/leaked by NVidea, if I recall correctly)

    In 3D games, one of the biggest problems is moving the textures in and out of the cards' memory rapidly enough.

    By compressing the textures before moving them around, the driver boosts both the usable texture size and effective bus speed.

    What was most interesting was that the overhead of compressing/decompressing the data was more than compensated for by the increase in speed that data that could be pushed over the AGP bus.

    So, once again, we see a sitation where gaming (and game programmers) is/are pushing the edge of the envelope.

  64. Apps that benefit most. by jcr · · Score: 1

    The apps that would get the greatest benefit, are those that have the least entropy in the memory they use. It wouldn't be very good for anything that's manipulating real-world data like sound and image files, but it would probably be beneficial for text editors, spreadsheets, databases and the like. -jcr

    --
    The only title of honor that a tyrant can grant is "Enemy of the State."
  65. Maybe not bad at all... by marick · · Score: 1
    Strike 4: Not promising: "The new technology is seamless to the end-user because the compressed data can be uncompressed in nanoseconds when needed." Call me a pessimist, but memory right now is around 6ns for PC133. Now, assuming a very conservative 2ns to decode the data, that's 8ns, which is a 25% performance hit. How many admins do you know that would take a 25% hit on performance on their servers to save a couple hundred bucks?

    You are forgetting how expensive running out of memory is. Yes, a 25% performance hit is significant. But the memory equation is the following:

    Average Access Time = Hit Time + Miss Rate*Miss Penalty

    They are lowering the Miss Rate and increasing the Hit Time. This should effectively lower the Average Access Time IF they have lowered the miss rate significantly, which they have IF you are running (for example) a gigantic database and it doesn't fit entirely in RAM.

    Remember, the Miss Penalty from RAM to Hard Disk is ENORMOUS, measured in milliseconds, not nanoseconds, so, suppose you can lower your miss rate from .01% to .005%, and the miss penalty is 1 ms.

    Hence (note 1ms = 1 X 10^6 ns):

    Old Average Access Time = 6ns + .01% X 1ms = 106 ns/access

    New Average Access Time = 8ns + .005% X 1ms = 58 ns/access

    (Yes, I know, these numbers are cooked, but that doesn't mean it doesn't apply to someone's system.)
  66. Re:Heat/Power can actually drop - whoops by nh4no3 · · Score: 1
    Just reread the article after reading some more posts, and it turns out my component placement was completely off. This thing sounds more like a HD controller hack to add hardware compression to read buffers, which would explain why it wouldn't be too cool for consumer boards (try fitting this on integrated chipset IDE)... And, I forgot to consider the power reduction from not having to power the IDE interface and HD.

    If they figured out a way to efficiently and transparently compress pages without nailing performance and cost (internal/external fragmentation problems, lots of on-chip ram in the codec to hold data structures...), I would be a lot more impressed. I also want to know how much control is given to the OS for partitioning memory between paging space and buffer space for the codec, very important in estimating the exact effects on the OS/HW. I'm eagerly waiting the benchmarks/details.

    -nh4no3

  67. Re:First Penis Bird by mllenerd · · Score: 1

    So, which one do you call the pecker?

    --

    --

    --
    The geeks shall inherit the earth.
  68. It's all about cost by Kris_J · · Score: 2
    A powerful general purpose CPU is all well and good, but they're expensive (and power hungry). If, for some specific tasks, a much cheaper bit of dedicated hardware can perform just as well then makes sense to farm off the task to that cheaper hardware.

    A good way to get a quick feel for this is to look at portable MP3 players v's playing MP3s on a WinCE/PocketPC unit. A dedicated MP3 player gives you 64-96MB of RAM for around US$300. A WinCE/PPC unit that can play MP3s will typically cost US$600-$1000 and only include 16MB-32MB. And the battery life is 12hours v's 3 or less.

    1. Re:It's all about cost by X · · Score: 1

      MP3 work is typically exactly the kind of task you want to have a DSP for. That being said, you might want to open up your MP3 player and see just how "specific" the hardware is. Lots of them have StrongArm chips in them. Almost all of them are either general purpose CPU's or general purpose DSP/CPU hybrids. This is why most of the players can support multiple compression formats.

      The thing that's killing the WinCE/PPC unit is WinCE, not the PPC.

      --
      sigs are a waste of space
    2. Re:It's all about cost by Kris_J · · Score: 1
      Fair enough...
      you might want to open up your MP3 player and see just how "specific" the hardware is
      Umm, let's not and say I did. I have a Rio. Some Guy took one apart and posted info about the bits here. It's;
      The blockdiagram of the Rio Player shows four main parts. First, the MP3 decoder which is located under a metal casing, so you can not see it on the pictures, it is an MAS3507D from Micronas / Intermetall. Second the CPU, an OTP version of NEC's &# 181;pD78P064. This CPU is contolling the user interface and in my opinion does the file-structure management in flash memory. Third part is the flash memory which is consists of 4 8MByte chips KM29U64000 from Samsung and an optional flash memory card. The last chip is an A40MX04 FPGA from Actel. This chip is responsible for address decoding, controlling the PC-Interface and implementing all logic functions in the Rio.
      I can't find an x86 or a 68k, how 'bout you?
    3. Re:It's all about cost by X · · Score: 1

      Out of curiosity, what the heck do you think the NEC chip is? Sure, it's not x86 or 68k, but then I've heard rumours of CPU's built on other instruction sets. ;-)

      Ironically, my argument is strengthened by the Actel part in a context that I'd given up on (DSP-like function). Instead of using a fixed-purpose ASIC they programmed an FPGA to behave like one. General purpose hardware wins again!

      --
      sigs are a waste of space
  69. Latency will not be affected... by nh4no3 · · Score: 1
    because their chip probably just plugs into the PCI bus (maybe directly to the memory as well if they feel adventurous) and does hardware compression of disk caching. Probably intercepts DMA transactions, keeping track of commonly requested sectors, bookkeeping on compressed data, and bypasses the disk if the data is available in the compressed buffers.

    The driver will probably disable OS built-in disk caching, and install some interrupt handlers to grow and shrink the cache, do replacement policy, etc, when things start to thrash.

    If true, then the codec will not increase memory latency, but it will steal bus cycles somewhere, but since the OS itself no longer caches the disk, probably not more cycles than before. There will be an increase in disk latency, but again since the OS caching step is eliminated, no additional latency is incurred. Not like this really matters.

    -nh4no3

    1. Re:Latency will not be affected... by be-fan · · Score: 2

      This really has nothing to do with disk caching, it compresses memory, not disk space. And it WILL increase latency because a section of memory must be decompressed before it can be sent. Even with dedicated hardware it will still take a few clocks.

      --
      A deep unwavering belief is a sure sign you're missing something...
    2. Re:Latency will not be affected... by be-fan · · Score: 2

      Opps. Disregard my previous comment. I was listening to the topic instead of reading the article. You're right about everything. I'm sorry. Forgive me. ;)

      --
      A deep unwavering belief is a sure sign you're missing something...
  70. FAWKING DSL!!! by fleckster · · Score: 1

    FAWKING DSL!!!!!!!!!!!!!!!! Lameness filter encountered. Post aborted. Ascii art. How creative. Not here though. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!!!!!!!!!!!!!!!!!! Lameness filter encountered. Post aborted. Ascii art. How creative. Not here though. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!!!!!!!!!!!!!! Lameness filter encountered. Post aborted. Ascii art. How creative. Not here though. ! Lameness filter encountered. Post aborted. Ascii art. How creative. Not here though. ! Lameness filter encountered. Post aborted. Ascii art. How creative. Not here though. ! Lameness filter encountered. Post aborted. Ascii art. How creative. Not here though. !!!!!!!!!!!!!!!!!!!!!!!!!!

    --
    ............ no.
  71. Re:NVidea is already doing this with graphics card by be-fan · · Score: 2

    It's not just the new drivers from nVidia. What nVidia does is DXTC (DirectX texture compression) which is a form of S3TC (S3 texture compression.) 3DFx is doing this to with FXT1 (I think that's right)

    --
    A deep unwavering belief is a sure sign you're missing something...
  72. ram doubler by sometwo · · Score: 1

    I was under the impression that ram doubler was/is a replacement for the virtual memory on macs. What are you talking about? is there another one?

  73. Here is how to hit it in real life by tilly · · Score: 2

    mmap() a large encrypted file. Start decrypting.

    When you do that in the background the OS will have to start paging in the encrypted file. It will stay in memory until that memory is needed for something else. But the encrypted file is a worst case scenario for the compression algorithm.

    If someone has an encrypted filesystem this will actually be an extremely common case!

    Really, your "Oh we will never hit that in the real world" is exactly how programmers f*ck up time after time again. You may not see how it will happen, but it will happen eventually and people will get hosed.

    Deal with your corner cases before turning your code lose on the world, please.

    Regards,
    Ben

    --
    My usual seat in the cluetrain is at A HREF="http://pub4.ezboard.com/biwethey.ht
  74. RTFA! by Zaaf · · Score: 1

    I know u posted an offtopic question, but IIRC the article mentions the doubling of 84GByte of ram. This is much more than the sum of all the memory in an average pc. So don't worry about a lame 64Mbyte ram on your videocard. It will be quite a while before ram-doubling will be economically interesting for those small amounts.

    IBM has lots of experience with ram / dasd doubling on their mainframes. Keeping that in mind I have great confidence in them pulling this off.

    And yes, if this ever comes to the desktop, then you could also have 4GBytes ram for the price of 2. 'Cause by the time it arrives, 2GByte of ram will be the feasible for the average PC.


    ---

    --

    ---
    "Multiple exclamation marks are a sure sign of a sick mind." (Terry Pratchett)
    1. Re:RTFA! by billybob+jr · · Score: 1

      Perhaps I should have marked my post "completely offtopic" I wasn't referring to IBM's mainframes or the ram doubling technology. Consumer video cards with ram to spare are here today, I have one. My 3dfx Voodoo5 video card has 64 megs of memory (incidently textures are stored twice, reducing the actual memory available, but increasing the bandwidth - during 3d operations). Surely when in the desktop we could put some of this spare memory to good use. Of course it would have to be returned when starting any application that needed full access to the video card for 3d graphics.

  75. Re:thumbs down? RRTFA by Zaaf · · Score: 1

    Strike 4: Not promising: "The new technology is seamless to the end-user because the compressed data can be uncompressed in nanoseconds when needed." Call me a pessimist, but memory right now is around 6ns for PC133. Now, assuming a very conservative 2ns to decode the data, that's 8ns, which is a 25% performance hit

    What y'all seem to be missing is that the article mentions one other technique. It caches the most frequently asked words, uncompressed, at the front of the memory lane. Thus creating another level of caching.
    This would mean that those 2ns (if that really is the right number) would on average be much shorter.

    Ofcourse, the OS implications could be quite considerable, but others have talked about that angle quite lenghty.

    Arjan Bos


    ---

    --

    ---
    "Multiple exclamation marks are a sure sign of a sick mind." (Terry Pratchett)
  76. Re:foist? by pma · · Score: 1

    I'm sure everyone here is impressed by your vast Karma. Not to mention the courage to take responsibility for a poinless first post - after you were sure it was first.

  77. Disk compression by Shotgun · · Score: 2

    One of the arguments for using software disk compression back in the day was that it would increase transfer rates. It was faster to move less data across the disk bus and then process it with a fast processor than it was to move the uncompressed data directly to memory.

    1) How true was this claim, and if it was true, why isn't it still true?

    2) Will the same effect be apparent in harware memory compression? Furthermore, would more performance be seen if the compressor was moved onto the processor so that not as much data had to be moved across the memory bus?

    --
    Aah, change is good. -- Rafiki
    Yeah, but it ain't easy. -- Simba
  78. What about the performance hit? by Dan+O'Shea · · Score: 1

    I hate to be the bearer of bad news, but any scheme that would "compress the data on the fly" means one thing and one thing only, you're going to suffer a perofrmance hit in order for this method to "double your memory".

    I would imagine that this hit is no small potato when you consider the fact that memory is increasingly pushing the speed barrier forcing cycle times to become smaller and smaller. Now imagine running additional compression overhead on top of that and you're back to a much larger cycle time (anyone remember 80ns SIMMS?)

    I would be weary of anything that promises to provide 2x the performance and neglects to mention the associated performance hit. Now, this necessarily won't be a big deal for people on the desktop, but IBM is marketing this for servers. Last time I checked, a server is usually stretched to its limits under worst case scenarios and normally runs with reserve resources in anticipation of the worst case scenario. Adding additional overhead does not make sense from a hardware-savings perspective because:

    a. You now *may* have to buy another server to meet your requirements.

    b. You very well might be cheaper buying memory upgrades than installing additional servers (although who knows how much memory will cost when the RAMBUS fiasco subsides =)

    Much for the same reason we design computers with a hierarchical memory system using caches and the like is to avoid throwing things to devices which are orders of magnitude slower (like hard disks)

    Why willingly slow down your fastest storage (memory) in order to double it? (in the context of servers and high load application, desktop is another story)

  79. Cache technology? by jovlinger · · Score: 2

    yeah, what he said!

    I haven't had a look at the press release, only the AP article. The one place this would be useful is in the 2nd or 3rd level cache. If you can compress fast enough then the extra size of the cache would come in handy.

    The reason why this technique would work on a cache but I can't see how it would work on main memory is that you don't ever see the cache, so you never make assumptions about how large it will be. So the encrypted data sitting in the cache fills it up after 1 Meg, while the empty matrix full of zero can have almost 4 Megs cached.

    Cache is transparent, so you can never be bitten by it changing logical size on you. Unlike main memory.

    For main memory, like sig11 points out, the OS will make assumptions that it can store exactly that much info. And since the hardware has no provisions for asking the OS to page out memory (and has no business asking, either) eventually havock will be wrought.

    So I'm strongly suspecting that this will turn out to be used for 3rd or 4th level cache.

  80. Re:Does that mean software compression is now moot by Doctor+Memory · · Score: 1

    There was a PC product that didn't do anything (don't remember the publisher). I believe there was at least one PC programs that did do something. Ram Doubler for the Mac was a very effective program (largely because of the odd way the Mac organized its memory).

    --
    Just junk food for thought...
  81. what's the difference? by Jon_E · · Score: 1

    Who cares if you put memory compression on a separate chip? What's the advantage between that and buying more memory or better hardware? It seems to me that it's just another IBM scheme to try and hook more ppl onto their hardware, where then can then turn around and eek more money out of you to buy more of their hardware and compression chips and then charge more $$ for their support on how to code to the chips/etc .. am I the only one who sees this?