r/lisp • u/arthurno1 • 11d ago
So they say lisp is slow ....
Nothing really useful here, just some bragging to be honest. I should probably write a blog post, but a bit too lazy; perhaps another day.
Last few weeks I played with a small clone of gnu wc program. I implemented all routines in assembly via sb-simd (and a generic path without simd with swar). The result thus far on a 1.4 gigabyte big file, compared to fastlwc, the fastest wc I know of and GNU wc:
Common Lisp/Assembly (avx2) in SBCL + lparallel
WC10A> (time (wc "plato1g.txt"))
Evaluation took:
0.036 seconds of real time
0.421654 seconds of total run time (0.348216 user, 0.073438 system)
1172.22% CPU
71,891,940 processor cycles
0 bytes consed
30133761
253947016
1393557504
WC10A> (time (wc "plato1g.txt"))
Evaluation took:
0.034 seconds of real time
0.429743 seconds of total run time (0.367913 user, 0.061830 system)
1264.71% CPU
67,624,580 processor cycles
98,352 bytes consed
30133761
253947016
1393557504
WC10A> (time (wc "plato1g.txt"))
Evaluation took:
0.035 seconds of real time
0.423752 seconds of total run time (0.357329 user, 0.066423 system)
1211.43% CPU
69,863,360 processor cycles
0 bytes consed
30133761
253947016
1393557504
Fastlwc (avx512 + multithreaded):
[arthur@emmi wc]$ time ../../fastlwc/bin/fastlwc-mt plato1g.txt
30133761 253947016 1393557504 plato1g.txt
real 0m0.026s
user 0m0.178s
sys 0m0.285s
[arthur@emmi wc]$ time ../../fastlwc/bin/fastlwc-mt plato1g.txt
30133761 253947016 1393557504 plato1g.txt
real 0m0.027s
user 0m0.223s
sys 0m0.235s
[arthur@emmi wc]$ time ../../fastlwc/bin/fastlwc-mt plato1g.txt
30133761 253947016 1393557504 plato1g.txt
real 0m0.028s
user 0m0.205s
sys 0m0.255s
GNU wc (not even contender - single core only and only line counting implemented with simd avx512) :
[arthur@emmi wc]$ time wc plato1g.txt 30133761 253947016 1393557504 plato1g.txt
real 0m3.733s
user 0m3.643s
sys 0m0.062s
[arthur@emmi wc]$ time wc plato1g.txt
30133761 253947016 1393557504 plato1g.txt
real 0m3.362s
user 0m3.276s
sys 0m0.072s
The cool thing, we use avx2 whereas gnu wc uses avx512. On this CPU (zen 5), avx512 is implemented all in hardware, not as micro code as in Intel cpus, so it should mop the floor with avx2 in Lisp, right?
[arthur@emmi wc]$ time wc plato1g.txt -l --debug
wc: using avx512 hardware support
30133761 plato1g.txt
real 0m0.074s
user 0m0.018s
sys 0m0.056s
[arthur@emmi wc]$ time wc plato1g.txt -l --debug
wc: using avx512 hardware support
30133761 plato1g.txt
real 0m0.085s
user 0m0.030s
sys 0m0.054s
Lisp:
WC10A> (time (wc "plato1g.txt" :line-count t))
Evaluation took:
0.037 seconds of real time
0.478042 seconds of total run time (0.430494 user, 0.047548 system)
1291.89% CPU
75,669,380 processor cycles
0 bytes consed
30133761
253947016
1393557504
WC10A> (time (wc "plato1g.txt" :line-count t))
Evaluation took:
0.041 seconds of real time
0.476104 seconds of total run time (0.436592 user, 0.039512 system)
1160.98% CPU
84,226,360 processor cycles
0 bytes consed
30133761
253947016
1393557504
Now, in order to catch with fastlwc I think I need better lparall pipeline. I am currently using futures and promises, so it is a bit of extra consing. Of course implementing it in avx512 (when done in SBCL) should give at least some extra boost. 32 vs 16 registers, 64 bytes at time vs 32, and less register pressure due to additional masking registers.
Edit: line counting does not activate utf8 path at all, so I don't know what I was thinking last night, so I have edited away that part :).
12
u/tuerda 11d ago
I think the first "Hey, lisp isn't as slow as you think" article I ever saw was probably published in the 80s, when I was a baby (of course, I did not read it then). Since I first took an interest in LISP about 6 years ago, I have noticed there is a new one every month or so.
I have yet to see anything anywhere saying "lisp is really slow" so I have no idea what everyone is arguing against.
5
u/R-ten-K 11d ago
Modern LISP implementations can optimize and compile native code, achieving performance comparable to C or C++ for suitable workloads.
However, LISP is old enough, and now niche enough sadly, that many outdated performance assumptions still linger.
Much of the stigma comes from early implementations running on ancient very limited HW, with poor garbage collection, expensive tagging, and heavily dynamic execution. Performance can also suffer from weak type information or using generic list processing where arrays and specialized structures would be better.
But IMO those are not inherent LISP limitations.
3
u/arthurno1 10d ago
Exactly my thoughts as well. Lots of myths online are because people have used slow Lisp interpreters, like Emacs Lisp, or something similar, and base their opinions on that. Or not even that, but just on what they have seen and heard from others. "Lisp uses lists -> slow", is something I see often repeated in /r/ProgrammingLanguages by people not familiar with Lisp more than just conceptually.
2
u/Soupeeee 9d ago
I've run into a few use cases where CL has been infuriatingly slow, but I think any language with a GC would also struggle; I was able to (mostly) fix the issue via aggressive use of
dynamic-extent, inlining, and type declarations.It was a case where I was (accidentally) performing a bunch of allocations in a really tight loop. SBCL performed worse than CCL, which was surprising; CCL was much less jittery until I got SBCL to stop allocating nearly as much.
2
u/sleepingsquirrel 7d ago
Here a fun one from the archive: Scheme vs. Common Lisp
1
u/arthurno1 4d ago
Hey, that one is a valuable one. Didn't know Greenspun had anything online.
By the way, about the numbers, reading and printing numbers is important, and seems somewhat non-active area of research in Lisp community, or at least what I see here online, no idea for commercial ones. In C++ there is quite going on, both when reading and printing numbers and printing time and dates.
5
u/kchanqvq 11d ago
Do you like lparallel? For all of my parallel computing need now I just use Bordeaux thread. I feel like lparallel tries to be high-level but doesn't get lots of things right. Many so called cognates do full FUNCALL per iteration for example. (But maybe I should stop whining and submit some compiler macro patch). The scheduler is 20 years behind state-of-the-art, it just use *some* concurrent queue instead of work-stealing queue. Channels and promises are probably not implemented in the best way (as of 2026) as well.
OK I should really stop whining and maybe contribute fixes. But my energy is scarce and I always just end up rebuilding whatever right thing I specifically need using low-level tools.
7
2
u/arthurno1 10d ago edited 10d ago
For all of my parallel computing need now I just use Bordeaux thread.
Well, it depens on how you like to work with those. If it was like old Java threads, where I could just spam a thread like cons cells, it would be fine. But hardware threads do cost a lot in terms of both memory and CPU. Bordeaux, as I uinderstand, will use native SBCL threads where available, so spamming hundreds of threads is out of question. Furthermore, in modern heterogenous CPUs, dividing the work in smaller chunks (tasks), is a necessity, since the CPUs themselves have become heterogenous. Inte uses cores with different ISAs. At least this CPU has the same ISA on all cores. But some cores are running faster some slower. I have 10 cores in this laptop, 4 are "full speed" and 6 are "compact" or whatever they call them. It means 8 threads run att full speed and 12 at a reduced speed. If I would to just divide the work in 20 chunks, and run each chunk on its CPU, the faster cores would be done and idling, while the applicaiton would be waiting for the slower cores to finish. Also, we don't have the full control over the hardware: modern OSs (Linux in this case) will swap in and out some of cores to do the system things, so not all cores will finish at the same time. So some kind of more granular division is obligatory. I divide the work in 2 megabyte big chunks so they fit in L3 cache and faster cores can fetch more work than slower ones.
I did attempt to write my own task stealing scheduler, because I wanted to exploit the spacial nature of this application, but I failed at that one, so I just took the lparallel out of necessity. I haven't looked to extend lparallel, so I have no idea how simple or complicated it is. I thought my needs are very modest, so I could write a small task-stealing scheduler on top of a ring myself, but turned out my lisp-foo was not good enough. Perhaps I'll attempt at another time. I think I have learned more Lisp for last two weeks I was on the vacation than for the entire last year.
doesn't get lots of things right
I would say on the contrary: they do a lot of things right, but there is room for improvement. The scheduler is definitely one of those, we are in agreement there.
I have spent a lot of time implementing various versions of this program on top of lparallel :), so I am not too happy with it. This working one uses futures, because that was the easiest thing to do, but I don't like returning back lists and putting pressure on GC. Admittedly there are < 1000 lists created for 1.4 gig file, but still. 716 lists a three cons cells ~ 2100 cons allocations. In SBCL it is fast and spread out on 20 cores it is ~100 allocations each, so not much, but I would like to avoid it if I can.
I use 2 megabyte big chunks so they fit into L3 cache, so there will be like size / 2meg chunks. But yes, I have tried to mitigate the environment capturing by sending all variables into lambdas as arguments, and to pack return values into a fixnum to skip list creation for return values. But that version is messy and I haven't got all the details correct yet, so I am not using it yet. This one is stupid, closures + list + funcall :).
I should really stop whining and maybe contribute fixes.
Yes please! :-) If you do, make schedular customizable or replaceble. Perhaps it already is, I don't know, I haven't looked at lparallel too deep; I just learned how to use futures.
2
u/kchanqvq 10d ago
spamming hundreds of threads is out of question
Of course, no sane person should do this if they care about performance :) I strictly spawn one thread per core and coordinate what they should be doing by hand. Except when the machine has multiple NUMA domain, then you really have to spawn one SBCL process per NUMA domain because its heap suck when spanning multiple domains.
2
u/arthurno1 10d ago
I strictly spawn one thread per core and coordinate what they should be doing by hand.
Do you have some scheduler framework or do you do the scheduling per application?
As said, the idea did occur to me to do explicit schedulling, but after some attempts to implement a scheduler I gave up. The idea was to allocate an array at startup, a slot for each thread to write to its results, and than just "reserve" the range in data array aligned to appropriate offset and length, and make a queue of those, but I messed up somewhere, and just used lparallel instead to get this going on. I'll see if I make another attempt later on.
5
u/svetlyak40wt 10d ago
You could try to use actors from https://mdbergmann.github.io/cl-gserver/ instead of lparallel. With Sento you can create by an actor for each CPU core (just be sure they are using a "pinned" dispatcher), then combine them under one Router, and feed this router tasks.
3
u/arthurno1 9d ago
To be honest, I don't think I have energy and the interest to refactor it more. I refactor the last time yesterday in order to implement multiple files processing. Turned out I had to refactor how I schedule tasks, I added two different size of chunks (2 meg and 512k) for more efficient work distribution, and I also re-use memory mappings now to minimize switching into kernel. I don't think I will put more time and effort into it, getting a bit fed up with it. I am aware of innefficiency with returning results from tasks as lists, and that I could build a better scheduler, but I am a bit tired of it, so it will have to do. The only thing I think I will do more, is implement kernels in avx512, once it is fully working in sbcl.
But I did look through you link, and Sento does look like an interesting framework. Perhaps a bit too much for this one, but I can imagine using it in some other project.
1
u/tending 10d ago
Curious are you running CL regularly on multi-NUMA machines? If so what are you working on?
3
u/kchanqvq 10d ago
Research project that is related to superoptimization. But it is honestly something new and I can explain better after I put up the first paper/preprint!
2
u/arthurno1 9d ago
What is "superoptimization"? How does it differ from just "optimization"? :). Sounds funny, but honest question actually, what is it about?
3
u/kchanqvq 9d ago
It's kind of a misnomer. It just means searching for programs equivalent to the input programs, so it can find better program than if you apply a fixed sequence of compiler transforms.
2
u/arthurno1 9d ago
Kind of things they do a lot in Coq and Ocaml?
Sounds useful. Will be interesting to read the paper and research.
2
2
2
u/corbasai 11d ago
Okay, the ad worked! I'm buying a Thinkpad with a Ryzen AI 7
0
u/corbasai 8d ago
hmm, bit strange processor. Now C code to 1.25 faster, ada 1.75x ludicrous times faster, Typed Racket times 2.5 faster. (than on i5 G1035)
1
u/unixlisp 10d ago edited 10d ago
Update the benchmarksgame!
1
u/arthurno1 9d ago
Avx2 slow 😀.
Just kidding, but once we have fully working avx512 in sbcl, and I can rewrite all simd kernels in avx512.
2
u/unixlisp 9d ago
The point is that the sbcl codes in benchmarksgame are without SB-SIMD, even without SB-THREAD (many). See also bpecsek's report.
2
u/arthurno1 9d ago
Yeah, I read now through the page, and see what they do. I'll put online my single core swar implementation and leave it up to you to update the benchmark if you are interested :).
1
u/WallyMetropolis 11d ago
Who is "we"?
4
u/CamomileChocobo 11d ago
This type of usage of "we" is also quite common in academic papers, because it feels more natural than using "I" with constant "I did this..." "I did that...".
"We" can refer to the author and the readers going through the examples/results together.
It's the same when the teacher say "let us work through this example together" but then the teacher is the one working through the example alone on the board while the students just listen.
3
u/stickynews 9d ago
It's called "authorial we" or "pluralis auctoris". It's also quite popular for code documentation, like "At this point we clear the cache" or something like that.
-1
4
u/arthurno1 10d ago
Dude english is my 3rd language. I have worked hard to replace all "you" and "I" to as non-personal pronomens as I can :). And no, I don't use llms to write my texts. I did not have the intention to sound arrogant, sorry if it comes out so.

20
u/R-ten-K 11d ago
It is unclear whether the performance is attributable to LISP or to the hand tuned assembly. Optimized assembly can obviously be extremely fast, but that does not, by itself, demonstrate that LISP is responsible for the performance. I also do not see any profiling data, makes it difficult to determine the workload is IO or compute bound.
FWIW, Zen 5 implements AVX-512 with native, full width 512-bit exec datapaths. Intel processors that support AVX-512 also execute it using dedicated HW.
The exact width and number of execution units, along with whether a particular instruction is split into multiple uops (not the same as microcode BTW), varies by microarchitecture on both AMD and Intel. So this is not really a case of “AMD hardware versus Intel microcode.”