Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

I recommend SBCL when you need excellent math performance and Clozure (not Clojure) CL for a good environment on OS X. You can't go wrong with either.


Last I checked, clisp had the best math performance as far as the lisp numeric stack for open-source lisps (obviously something like maxima is different). The best numeric benchmarks for sbcl all seem to be FFI to gmp (which happens to be the library used by clisp).


CLISP doesn't use GMP; it has its own, very nice, bignum library. If you want to use GMP on SBCL, the SB-GMP contrib has been around for approximately one year; it'll hook transparently in SBCL's bignums, at runtime. However, I think the grandparent was referring to performance on typical numerical computing workloads: machine integer or floating point arithmetic, mixed with a fair amount of array indexing.


Ah, that makes a lot of sense; sbcl does a good job of open-coding machine integer arithmetic with fairly minimal type declarations.


Slightly off-topic, but is clisp still being developed? The last release seems to be from around 2010.


I guess the reason there is not too much new CLISP development going on is that it's really a mature product. The ANSI standard of Common Lisp was published in 1994 and there was no amendments or additions since then. CLISP has implemented it awhile ago. Also, CLISP is written in C and doesn't compile to machine code like, for example, SBCL, so no need for an extra work to target new platforms. Again, that's my guess.


I suspect it's more a lack of resources (time, energy, interest) than maturity. CLISP has bugs. Some bugs are fixed in version control. It would be nice to have a new release.


Last commit was earlier this month: http://sourceforge.net/p/clisp/clisp/commit_browser




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: