since I'm a newbie to Common Lisp I tried to solve problems on SPOJ by using Common Lisp(sbcl). The first problem is a simple task of reading numbers until number 42 is found. Here's my solution:

(defun study-num ()
  (let ((num (parse-integer (read-line t))))
    (when (not (= num 42))
      (format t "~A~%" num)
      (study-num))))
(study-num)

The solution is accepted. But when I looked into the details of the result I found it used 57M of MEM! It's bloody unreasonable but I can't figure out why. What can I do to make an optimization?

link|improve this question

75% accept rate
How did you measure the 57M? (when using time to measure (study-num) with three guesses I get 100k consed - I guess I could get a much lower number with optimizations). Running (room) on a fresh instance of SBCL on x64 shows that it uses about 100M of RAM (about half the amount is used on x86). – Miron Brezuleanu Jan 25 at 19:17
@MironBrezuleanu That data is given by SPOJ. even a (format t "test") program would cost that much since I tested with it yesterday. – lastland Jan 26 at 16:02
I'm asking about the memory consumption figure you gave (57M) - where does it come from? top or ps in the shell? (room) or (time ...) in the Lisp REPL? My hypothesis is that you used ps or something similar in the shell, and you basically saw the minimal memory usage of SBCL - which isn't that great, if you compare it to a loaded JVM (or .NET VM). – Miron Brezuleanu Jan 26 at 17:51
@MironBrezuleanu I mean the memory usage information is not from top or (room) or anything else on my computer, but given by SPOJ. – lastland Jan 27 at 12:38
1  
OK, so I guess they look at how much memory the process uses. ~50M is consistent with what SBCL needs initially on x86. Considering there's a lot of stuff in there, this is not a huge number IMO. If you need to see how much memory your code really conses, use (time) (consed bytes are a bit different from 'max memory used at one point', as you could have 2MB consed, but a GC after the first MB, thus the second MB uses the space of the first, so just 1MB of memory actually used). – Miron Brezuleanu Jan 27 at 14:16
show 1 more comment
feedback

1 Answer

up vote 2 down vote accepted

You are making repeated recursive calls, without enough optimization switched on to enable tail-call elimination (SBCL does do this, but only when you have "optimize for speed" set high and "optimize for debug info" set low).

The Common Lisp standard leaves tail-call elimination as an implementation quality issue and provides other looping constructs (like LOOP or DO, both possibly suitable for this application).

In addition, a freshly started SBCL is probably going to be larger than you expect, due to needing to pull in its runtime environment and base image.

link|improve this answer
Thanks. But the problem remains after the (proclaim '(optimize (speed 3) (debug 0))) is added to the beginning of my program. What shall I do if I want to solve this problem by using tail-recursive code? – lastland Jan 25 at 12:54
@lastland Try it in a REPL while tracing STUDY-NUM and see if it actually does TCE? Otherwise, converting the code to use LOOP should be pretty trivial. I don't, off-hand, know how close 57 MB is to the "freshly started SBCL image" is, it may be close to as small as it gets. – Vatine Jan 25 at 13:13
I tried another program without LOOP, the memory usage stays 57M. But the exactly same program run on clisp would only use 12M (still too much but better). I guess the this problem is caused by sbcl, isn't it? So there's almost nothing I can do? – lastland Jan 25 at 13:36
1  
clisp and SBCL have a very different way of handling "code". In clisp, things are (mostly) byte-compiled and interpreted by a bytecode machine. In SBCL, things are (mostly) compiled to native code and the start-up process includes mapping in an image with the initial lisp environment. – Vatine Jan 25 at 14:55
Thank you. So the 57M memory is needed for the start environment of SBCL, right? I'd love to accept this answer if you're willing to make an edit. – lastland Jan 27 at 15:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.