|
|
|
|
|
|
| |
| |
|
|
From: Thomas de Groot
Subject: Possible Parse Error: Insufficient memory to allocate intermediate image storage.
Date: 2 Jun 2009 04:22:57
Message: <4a24e161$1@news.povray.org>
|
|
|
| |
| |
|
|
"Possible Parse Error: Insufficient memory to allocate intermediate image
storage."
"Fatal error in parser: Cannot access data in file."
The message above appears sometimes after restarting the render, following a
render interruption. Shutting down POV-Ray and starting up again solves the
problem. I guess that all memory is not cleared after a render interruption.
Is this a bug?
Thomas
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
"Thomas de Groot" <tDOTdegroot@interDOTnlANOTHERDOTnet> wrote:
> "Possible Parse Error: Insufficient memory to allocate intermediate image
> storage."
> "Fatal error in parser: Cannot access data in file."
>
> The message above appears sometimes after restarting the render, following a
> render interruption. Shutting down POV-Ray and starting up again solves the
> problem. I guess that all memory is not cleared after a render interruption.
> Is this a bug?
I once encountered this, too.
I had the impression that this happens when you interrupt POV-Ray while it is
busy generating a (large) "function image".
It is a bug at any rate.
Post a reply to this message
|
|
| |
| |
|
|
From: Thomas de Groot
Subject: Re: Possible Parse Error: Insufficient memory to allocate intermediate imag=
Date: 3 Jun 2009 10:39:17
Message: <4a268b15$1@news.povray.org>
|
|
|
| |
| |
|
|
"clipka" <nomail@nomail> schreef in bericht
news:web.4a2549c73a1a2316f708085d0@news.povray.org...
> I had the impression that this happens when you interrupt POV-Ray while it
> is
> busy generating a (large) "function image".
>
> It is a bug at any rate.
>
It has to do with it seems with image_maps, and especially with large ones I
guess, possibly in combination with large meshes... Oh dear, I am afraid I
am not too specific. I shall observe the thing more closely before sending
in a bug report.
Thomas
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
"Thomas de Groot" <tDOTdegroot@interDOTnlANOTHERDOTnet> wrote:
> It has to do with it seems with image_maps, and especially with large ones I
> guess, possibly in combination with large meshes... Oh dear, I am afraid I
> am not too specific. I shall observe the thing more closely before sending
> in a bug report.
That's much more detailed than what I'm used to at work. Sometimes it feels
like:
Customer: "Something's wrong."
We: "Okay, we'll correct something in the next version."
Post a reply to this message
|
|
| |
| |
|
|
From: Chris Cason
Subject: Re: Possible Parse Error: Insufficient memory to allocate intermediate imag=
Date: 4 Jun 2009 03:04:17
Message: <4a2771f1@news.povray.org>
|
|
|
| |
| |
|
|
Thomas de Groot wrote:
> It has to do with it seems with image_maps, and especially with large ones I
> guess, possibly in combination with large meshes... Oh dear, I am afraid I
> am not too specific. I shall observe the thing more closely before sending
> in a bug report.
the intermediate image storage, at least on windows, requires a certain amount
of contiguous virtual address space (not physical memory), determined by the
dimensions of the image being rendered. if the virtual address space is
fragmented this allocation request may fail. it's a known problem I have to work
around by providing a fall-back means of accessing the intermediate image data
(currently it's done via the above-mentioned memory mapping of virtual address
space to physical disk space).
-- Chris
Post a reply to this message
|
|
| |
| |
|
|
From: Thomas de Groot
Subject: Re: Possible Parse Error: Insufficient memory to allocate intermediate imag=
Date: 4 Jun 2009 04:04:18
Message: <4a278002@news.povray.org>
|
|
|
| |
| |
|
|
"clipka" <nomail@nomail> schreef in bericht
news:web.4a26cd7ad1898f691181d7960@news.povray.org...
> That's much more detailed than what I'm used to at work. Sometimes it
> feels
> like:
>
> Customer: "Something's wrong."
>
> We: "Okay, we'll correct something in the next version."
>
LOL! To tell the truth I was just feeling like that customer....
Thomas
Post a reply to this message
|
|
| |
| |
|
|
From: Thomas de Groot
Subject: Re: Possible Parse Error: Insufficient memory to allocate intermediate imag=
Date: 4 Jun 2009 04:05:33
Message: <4a27804d$1@news.povray.org>
|
|
|
| |
| |
|
|
"Chris Cason" <del### [at] deletethistoopovrayorg> schreef in
bericht news:4a2771f1@news.povray.org...
> the intermediate image storage, at least on windows, requires a certain
> amount
> of contiguous virtual address space (not physical memory), determined by
> the
> dimensions of the image being rendered. if the virtual address space is
> fragmented this allocation request may fail. it's a known problem I have
> to work
> around by providing a fall-back means of accessing the intermediate image
> data
> (currently it's done via the above-mentioned memory mapping of virtual
> address
> space to physical disk space).
>
Yes, that seems to be the problem, Chris.
Thomas
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |