comp.lang.idl-pvwave archive
Messages from Usenet group comp.lang.idl-pvwave, compiled by Paulo Penteado

Home » Public Forums » archive » Re: IDL - freeing up used memory?
Show: Today's Messages :: Show Polls :: Message Navigator
E-mail to friend 
Return to the default flat view Create a new topic Submit Reply
Re: IDL - freeing up used memory? [message #84376 is a reply to message #84374] Wed, 29 May 2013 10:20 Go to previous messageGo to previous message
David Fanning is currently offline  David Fanning
Messages: 11724
Registered: August 2001
Senior Member
AMS writes:


> I'm running into a memory issue which I am not certain whether is related to my IDL code or the machine the code is running on itself, and am wondering whether someone might be able to help me out. To start with, I'm using IDL 7.1.1 on CentOS, invoking via command line.
>
I think your memory is getting fragmented. I would think about doing two
things. First, I wouldn't set your unused variables to 0, as I think
that promotes fragmentation. I would use the Coyote Library routine
UNDEFINE to get rid of them:

http://www.idlcoyote.com/programs/undefine.pro

But, maybe better than this, I would try (assuming they are always the
same size) to reuse the memory you have already set aside for reading in
the variables:

FOR j=0,n DO ....
IF N_Elements(inputVar) EQ 0 THEN $
inputVar = ... ELSE $
inputVar = Temporary(inputVar) * 0
ReadU, lun, inputvar

Cheers,

David
--
David Fanning, Ph.D.
Fanning Software Consulting, Inc.
Coyote's Guide to IDL Programming: http://www.idlcoyote.com/
Sepore ma de ni thue. ("Perhaps thou speakest truth.")
[Message index]
 
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: need personal IDL coach
Next Topic: IDLBridge problem with unknown ExecuteTimer method

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ] [ PDF ]

Current Time: Wed Oct 08 19:33:16 PDT 2025

Total time taken to generate the page: 0.00450 seconds