Well, no, it's SBCL. Common Lisp has support for types, but most compilers only use them for optimization, SBCL goes one step further and emits warnings when you mismatch types. And looking at the code, I can see lots of type declarations.
It's also interesting to note that the code does not seem to be using SBCL's new SIMD library*, so it could be sped up even more.
I haven’t looked at the tests themselves so I can’t speak to their application.
But the range of performance for dynamic languages seems to be enormous. Much bigger than the one of static languages.