Author: GSR - FR Date: To: gimp-developer Subject: [Gimp-developer] Re: Re: optional scaling in the save dialog?
Hi,
gwidion@??? (2005-02-20 at 0203.45 -0200): > Let X bre a Huge Amount of Memory (tm) taken by said image, and Y be A
> Couple Kilobytes (tm) used by scaled down version
> Your proccess:
> - Initially using X memory
> duplicate image -> now using x * 2 memory.
I assume there is Copy On Write, thus delaying real memory usage (and
the bandwidth too) until the data changes. Lets see COW at work:
Used swap and mem (after removing buffers and cache) numbers seem
pretty stable, just mimimal increases in both, some KB reduction
sometimes (other app releasing mem probably). By your rule, the
machine should be crawling now due the 50 copies. Just the pixels are
50 * 2000 * 2000 * 3 = 600 * 10^6, more than the physical RAM.