newLISP Fan Club

Forum => Anything else we might add? => Topic started by: HPW on January 26, 2004, 03:45:26 AM

Title: newLISP memory management
Post by: HPW on January 26, 2004, 03:45:26 AM
New thread coming from here:



http://www.alh.net/newlisp/phpbb/viewtopic.php?t=168



>What do others think about memory management style? (Is it time to spawn another thread on this?)



I have not cared about much about the internals until now, because as long things were working quite well with sufficient performance, the job gets done. I have printed out the explanation to read it carefully later.



My large lists are mostly data, which are loaded at startup and are not much modified at runtime. Of cource I have to keep an eye on this when things gets bigger. I agree with Lutz to keep things simple, small and fast.
Title:
Post by: Lutz on January 26, 2004, 06:02:07 AM
Much of my own code violates the recommendations I have given for dealing with large lists in newLISP. Specially the statistics functions, many of them take one or two dimensional lists as arguments and passed by value, I have never had performance problems. I should change the recommendations from 'few hundred' to 'few thousand' for large lists.



The processing done on the list itself in the application outweighs the time needed to copy the list. I did the following experiment:



(length (set 'lst (sequence 1 100000))) => 100,000 elements



(define (sum1 l) (apply + l))



(define (sum2) (apply + lst)



(time (sum1 lst)  => 125 ms

(time (sum2)   => 94 ms



sum1 will pass the lst by value and copy it, sum2 uses a global. On a large list the difference in speed is only about 25%. Lets see a smaller list:



(set 'lst (sequence 1 1000))



(time (dotimes (x 1000) (sum1 lst))) => 219 ms (219 us / iteration)

(time (dotimes (x 1000) (sum2))) => 203 ms (203 us / iteration)



On a smaller list about 10%. The larger list has proportionally more overhead, but overall and for practical purposes this overhead can be neglected. I will change the paper to reflect this.



Lutz
Title:
Post by: nigelbrown on March 31, 2004, 07:19:30 PM
Regarding the -m option for memory size, I noticed that a negative number is accepted viz



C:newlisp>newlisp -m -5 -e "(sys-info)"

(266 -327680 260 1 0 1024 8000 6)

C:newlisp>newlisp -m 5 -e "(sys-info)"

(266 327680 260 1 0 1024 8000 6)

C:newlisp>
Title:
Post by: newdep on April 01, 2004, 03:08:07 AM
heheh that negative number could free memory ;-) But i dont think

its a feature though...
Title:
Post by: Lutz on April 01, 2004, 06:05:22 AM
I will take the absolute value, but else not check for numbers which are to big or roll over.



Lutz
Title:
Post by: eddier on April 01, 2004, 06:19:53 AM
I like the fact that my programs don't spit, spudder, and jolt every garbage collection cycle. That is one of the reasons I stayed away from Lisp until newLISP.



Eddie