POV-Ray : Newsgroups : povray.general : POVRAY memory usage Server Time
23 Apr 2024 06:08:57 EDT (-0400)
  POVRAY memory usage (Message 1 to 10 of 22)  
Goto Latest 10 Messages Next 10 Messages >>>
From: Max
Subject: POVRAY memory usage
Date: 13 Oct 2017 20:15:00
Message: <web.59e1563095148a195e1bc5320@news.povray.org>
Hi,

  I've seen posts from folks that claim to use large amounts of memory.

How could I get ahold of either scenes or scenes + options that result in large
memory usage from POVRAY (ideally > 8GB)?

I'm doing some memory performance testing.

Thanks!

Max


Post a reply to this message

From: Bald Eagle
Subject: Re: POVRAY memory usage
Date: 14 Oct 2017 08:05:00
Message: <web.59e1fcd8da2c0257acfa72180@news.povray.org>
"Max" <max### [at] intelcom> wrote:
> Hi,
>
>   I've seen posts from folks that claim to use large amounts of memory.
>
> How could I get ahold of either scenes or scenes + options that result in large
> memory usage from POVRAY (ideally > 8GB)?
>
> I'm doing some memory performance testing.


I always just plot a LOT of spheres.
Take a 1024 x 768 scene and just plot a different sphere for each pixel.
Then you can add z-layers if you need more spheres.

Then you can add textures, finishes, etc.


I'm sure filling up arrays will eat up lots of memory as well.
New macros < 256 kb are cached in memory as well - so you could just define a
bunch of macros.


Post a reply to this message

From: Kenneth
Subject: Re: POVRAY memory usage
Date: 14 Oct 2017 09:05:00
Message: <web.59e20a34da2c025789df8d30@news.povray.org>
Perhaps run a #while loop or #for loop with a HI-rez image_map in it. (I don't
think such a scene actually needs a full *render*-- the memory requirement will
vastly increase during the parsing stage, IIRC.) Something like...

#declare C=1;
#while(C < 10,000) // or whatever
pigment{image_map{... HI-res image...}}
#declare C = C+1;
#end

That should repeatedly load the image_map into memory.

(BTW: To *prevent* the unnecessary memory usage, #declare the pigment *before*
it's used in the loop.)


Post a reply to this message

From: Alain
Subject: Re: POVRAY memory usage
Date: 14 Oct 2017 18:28:48
Message: <59e28fa0$1@news.povray.org>
Le 17-10-13 à 20:11, Max a écrit :
> Hi,
> 
>    I've seen posts from folks that claim to use large amounts of memory.
> 
> How could I get ahold of either scenes or scenes + options that result in large
> memory usage from POVRAY (ideally > 8GB)?
> 
> I'm doing some memory performance testing.
> 
> Thanks!
> 
> Max
> 
> 
> 

In a few nested loops, define some objects, each one individualy textured :
#declare R=seed(0);
#declare I=9e9;
#while (I>0)
  #declare J=9e9;
  #while (J>0)
	sphere{
	 <rand(R),rand(R),rand(R)>*10000 0.1+rand(R)
	 pigment{rgb<rand(R),rand(R),rand(R)>}
	 finish{diffuse 0.3+rand(R)/2}
	}
   #delcare J=J-1;
   #end
  #declare I=I-1;
#end

81000000000000000000 spheres, each with a different texture. Hope that 
you have enough RAM for that...


Post a reply to this message

From: clipka
Subject: Re: POVRAY memory usage
Date: 15 Oct 2017 12:18:10
Message: <59e38a42@news.povray.org>
Am 14.10.2017 um 14:02 schrieb Bald Eagle:

> I'm sure filling up arrays will eat up lots of memory as well.
> New macros < 256 kb are cached in memory as well - so you could just define a
> bunch of macros.

Hm... did I remember that number wrong?
Nope, source code agrees with my memory: It's 64 kiB.


Post a reply to this message

From: Max
Subject: Re: POVRAY memory usage
Date: 16 Oct 2017 19:20:00
Message: <web.59e53e11da2c02574259753d0@news.povray.org>
Alain <kua### [at] videotronca> wrote:
> Le 17-10-13 à 20:11, Max a écrit :

Thank you! Very helpful. I went with allocating many spheres.

Next question: how likely is someone to do such a thing in a real rendering? Are
there real renderings that need large numbers of objects allocated?

I'm looking for the largest memory using 'real' rendering. Any ideas?

Would povray be able to do more if memory were along the lines of 32GB or larger
for the average user?

Thanks,

Max


Post a reply to this message

From: clipka
Subject: Re: POVRAY memory usage
Date: 16 Oct 2017 20:45:44
Message: <59e552b8$1@news.povray.org>
Am 17.10.2017 um 01:17 schrieb Max:
> Alain <kua### [at] videotronca> wrote:
>> Le 17-10-13 à 20:11, Max a écrit :
> 
> Thank you! Very helpful. I went with allocating many spheres.
> 
> Next question: how likely is someone to do such a thing in a real rendering? Are
> there real renderings that need large numbers of objects allocated?
> 
> I'm looking for the largest memory using 'real' rendering. Any ideas?
> 
> Would povray be able to do more if memory were along the lines of 32GB or larger
> for the average user?

The more main memory you have, the more POV-Ray can indeed do in terms of...

- Geometric detail in the scene (number of primitives in case of CSG, or
number of triangles in case of meshes).

- Texture detail in the scene, in case of image-based textures.

- Illumination detail (number of light sources, number of radiosity
samples, photon density).


Post a reply to this message

From: Thomas de Groot
Subject: Re: POVRAY memory usage
Date: 17 Oct 2017 02:54:25
Message: <59e5a921$1@news.povray.org>
On 17-10-2017 2:45, clipka wrote:
> Am 17.10.2017 um 01:17 schrieb Max:
>> Alain <kua### [at] videotronca> wrote:
>>> Le 17-10-13 à 20:11, Max a écrit :
>>
>> Thank you! Very helpful. I went with allocating many spheres.
>>
>> Next question: how likely is someone to do such a thing in a real rendering? Are
>> there real renderings that need large numbers of objects allocated?
>>

Well, Vermeer's Cat by Ive (see p.b.i.) would be a good example of large 
numbers of objects (cat's hairs).

-- 
Thomas


Post a reply to this message

From: Bald Eagle
Subject: Re: POVRAY memory usage
Date: 17 Oct 2017 08:05:01
Message: <web.59e5f197da2c0257c437ac910@news.povray.org>
"Max" <max### [at] intelcom> wrote:

> Next question: how likely is someone to do such a thing in a real rendering?

Very.

"Taking advantage of POV-Ray's clever memory management for copies of meshes,
this one has more than 12000 oak trees. "
http://hof.povray.org/River.html


 Are
> there real renderings that need large numbers of objects allocated?
http://hof.povray.org/fallfury.html

This doodle alone consisted of 655,000 untextured spheres.
http://news.povray.org/povray.binaries.animations/message/%3Cweb.592d5e424e850994c437ac910%40news.povray.org%3E/#%3Cweb
.592d5e424e850994c437ac910%40news.povray.org%3E

That's just the objects.
Now consider that I might want to store the locations in an array, do
calculations with stored variable values, add textures, etc.

Other people routinely work with meshes in excess of a million vertices.


> Would povray be able to do more if memory were along the lines of 32GB or larger
> for the average user?


YES.


Post a reply to this message

From: Kenneth
Subject: Re: POVRAY memory usage
Date: 17 Oct 2017 15:30:01
Message: <web.59e65999da2c025789df8d30@news.povray.org>
"Bald Eagle" <cre### [at] netscapenet> wrote:
> "Max" <max### [at] intelcom> wrote:
>
> > Would povray be able to do more if memory were along the lines of 32GB
> or larger for the average user?
>
> YES.

A naive question: Does POV-Ray actually choke on a larger-than-RAM-memory scene?
I thought disc-swapping would take over (slower of course, but with no outright
crash.)


Post a reply to this message

Goto Latest 10 Messages Next 10 Messages >>>

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.