POV-Ray : Newsgroups : povray.general : Large renders Server Time
8 Aug 2024 06:16:44 EDT (-0400)
  Large renders (Message 1 to 10 of 10)  
From: Nekar Xenos
Subject: Large renders
Date: 7 Mar 2001 02:19:16
Message: <3aa5e0f4@news.povray.org>
I'm not sure if this can work or if someone has suggested it before, but
here's my idea:

This is for scenes that take days to render. Is it possible to break a scene
up into separate parts to be rendered? My idea is that those who want to
help with large renders get together and work out a way to do this. Then
anyone who has a large render to be done sends the file to the leader of the
group who converts it for each participant. Each one then renders his part
separately and then sends it back to the leader who pastes it together
again. Each participant would have to submit their machines specifications
so that the Gigahertzes will get larger areas and the Pentium 1's smaller
areas to render.

Or else something like a network render over the internet..

Just a thought...

Nekar Xenos


Post a reply to this message

From: Warp
Subject: Re: Large renders
Date: 7 Mar 2001 06:33:30
Message: <3aa61c89@news.povray.org>
Nekar Xenos <vir### [at] iconcoza> wrote:
: Is it possible to break a scene up into separate parts to be rendered?

  Yes. Read the documentation on command line options for details.

  (I have made a shell-script for myself that distributes the rendering into
several computers here using this exact technique; it puts the computers to
render small parts of the image and after they have finished it joins the
parts into one image. The speed increase is considerable; with 8 computers
it's about 5-7 times faster than with one.)

-- 
char*i="b[7FK@`3NB6>B:b3O6>:B:b3O6><`3:;8:6f733:>::b?7B>:>^B>C73;S1";
main(_,c,m){for(m=32;c=*i++-49;c&m?puts(""):m)for(_=(
c/4)&7;putchar(m),_--?m:(_=(1<<(c&3))-1,(m^=3)&3););}    /*- Warp -*/


Post a reply to this message

From: Christoph Hormann
Subject: Re: Large renders
Date: 7 Mar 2001 07:25:00
Message: <3AA6289D.BE584120@gmx.de>
Warp wrote:
> 
>   Yes. Read the documentation on command line options for details.
> 
>   (I have made a shell-script for myself that distributes the rendering into
> several computers here using this exact technique; it puts the computers to
> render small parts of the image and after they have finished it joins the
> parts into one image. The speed increase is considerable; with 8 computers
> it's about 5-7 times faster than with one.)
> 

But don't forget to mention that this does not work well with radiosity.  

Furthermore there is also PVMPov:

http://www.luga.de/~flierl/pvmpov/
http://www.wozzeck.net/images/pmp/

Christoph

-- 
Christoph Hormann <chr### [at] gmxde>
IsoWood include, radiosity tutorial, TransSkin and other 
things on: http://www.schunter.etc.tu-bs.de/~chris/


Post a reply to this message

From: Warp
Subject: Re: Large renders
Date: 7 Mar 2001 11:14:39
Message: <3aa65e6f@news.povray.org>
Christoph Hormann <chr### [at] gmxde> wrote:
: But don't forget to mention that this does not work well with radiosity.  

  It's also useless if your parsing time is longer than your render time :)

-- 
char*i="b[7FK@`3NB6>B:b3O6>:B:b3O6><`3:;8:6f733:>::b?7B>:>^B>C73;S1";
main(_,c,m){for(m=32;c=*i++-49;c&m?puts(""):m)for(_=(
c/4)&7;putchar(m),_--?m:(_=(1<<(c&3))-1,(m^=3)&3););}    /*- Warp -*/


Post a reply to this message

From: Tom Melly
Subject: Re: Large renders
Date: 7 Mar 2001 11:35:13
Message: <3aa66341$1@news.povray.org>
"Warp" <war### [at] tagpovrayorg> wrote in message
news:3aa65e6f@news.povray.org...
> Christoph Hormann <chr### [at] gmxde> wrote:
> : But don't forget to mention that this does not work well with radiosity.
>
>   It's also useless if your parsing time is longer than your render time
:)
>

? but if the parse time takes place in parallel then there is still a gain.

Single machine
Parse time = 60 mins
Render time = 30 mins
Total time = 90 mins

2 machines
Parse time = 60 mins
Render time 15 mins
Total time = 75 mins


Post a reply to this message

From: Thorsten Froehlich
Subject: Re: Large renders
Date: 7 Mar 2001 14:46:38
Message: <3aa6901e$1@news.povray.org>
In article <3aa66341$1@news.povray.org> , "Tom Melly" 
<tom### [at] tomandlucouk> wrote:

> ? but if the parse time takes place in parallel then there is still a gain.

The relative gain approaches zero with long parse times and shorter
render times.

    Thorsten

____________________________________________________
Thorsten Froehlich, Duisburg, Germany
e-mail: tho### [at] trfde

Visit POV-Ray on the web: http://mac.povray.org


Post a reply to this message

From: Warp
Subject: Re: Large renders
Date: 8 Mar 2001 03:17:14
Message: <3aa7400a@news.povray.org>
Thorsten Froehlich <tho### [at] trfde> wrote:
: The relative gain approaches zero with long parse times and shorter
: render times.

  And this only if only one computer makes the parsing.
  If you distribute the rendering to several computers "by brute force", that
is, by just starting povray in several computers and render parts of the
image (as I do in my script), then each computer has to parse the scene.

-- 
char*i="b[7FK@`3NB6>B:b3O6>:B:b3O6><`3:;8:6f733:>::b?7B>:>^B>C73;S1";
main(_,c,m){for(m=32;c=*i++-49;c&m?puts(""):m)for(_=(
c/4)&7;putchar(m),_--?m:(_=(1<<(c&3))-1,(m^=3)&3););}    /*- Warp -*/


Post a reply to this message

From: Tom Melly
Subject: Re: Large renders
Date: 9 Mar 2001 04:22:25
Message: <3aa8a0d1$1@news.povray.org>
"Warp" <war### [at] tagpovrayorg> wrote in message
news:3aa7400a@news.povray.org...
> Thorsten Froehlich <tho### [at] trfde> wrote:
> : The relative gain approaches zero with long parse times and shorter
> : render times.
>
>   And this only if only one computer makes the parsing.
>   If you distribute the rendering to several computers "by brute force",
that
> is, by just starting povray in several computers and render parts of the
> image (as I do in my script), then each computer has to parse the scene.
>

Yes, but as long as each pc is parsing the scene at the same time, the parse
time doesn't get any longer, the render time just gets shorter.


Post a reply to this message

From: Jan Walzer
Subject: Re: Large renders
Date: 11 Mar 2001 17:41:18
Message: <3aabff0e@news.povray.org>
"Warp" <war### [at] tagpovrayorg> wrote:
> Thorsten Froehlich <tho### [at] trfde> wrote:
> : The relative gain approaches zero with long parse times and shorter
> : render times.
>
>   And this only if only one computer makes the parsing.
>   If you distribute the rendering to several computers "by brute force",
that
> is, by just starting povray in several computers and render parts of the
> image (as I do in my script), then each computer has to parse the scene.
How do you think 'bout sharing this script ?
Would you post it ?

> --
> char*i="b[7FK@`3NB6>B:b3O6>:B:b3O6><`3:;8:6f733:>::b?7B>:>^B>C73;S1";
> main(_,c,m){for(m=32;c=*i++-49;c&m?puts(""):m)for(_=(
> c/4)&7;putchar(m),_--?m:(_=(1<<(c&3))-1,(m^=3)&3););}    /*- Warp -*/


--
background{rgb 1}camera{location<1,5,-2>look_at 0}#macro m(a,b,i)#local
d=(b-a)/
8;#local
e=vcross(d,y);#if(i)m(a-e,a+e+2*d,i-1)m(a+e,a+2*d-e,i-1)m(a+3*d-e,a+e+3
*d,i-1)m(a+3*d-e,a+5*d-e,i-1)m(a+6*d-e,a+e+6*d,i-1)m(a+8*d-e,a+e+8*d,i-1)#el
se
cylinder{a,b,vlength(d)/3 pigment{rgb 0}}#end#end m(-4*x,2*x,4) // Jan
Walzer


Post a reply to this message

From: Warp
Subject: Re: Large renders
Date: 11 Mar 2001 17:42:40
Message: <3aabff60@news.povray.org>
Jan Walzer <jan### [at] lzernet> wrote:
: How do you think 'bout sharing this script ?
: Would you post it ?

  I have posted it in povray.unix some time ago. Try searching there.

-- 
char*i="b[7FK@`3NB6>B:b3O6>:B:b3O6><`3:;8:6f733:>::b?7B>:>^B>C73;S1";
main(_,c,m){for(m=32;c=*i++-49;c&m?puts(""):m)for(_=(
c/4)&7;putchar(m),_--?m:(_=(1<<(c&3))-1,(m^=3)&3););}    /*- Warp -*/


Post a reply to this message

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