/mobile Handheld Friendly website
Ubuntu : Intel® Q6600® one core |
Each table row shows performance measurements for this Lisp SBCL program with a particular command-line input value N.
| N | CPU secs | Elapsed secs | Memory KB | Code B | ≈ CPU Load |
|---|---|---|---|---|---|
| 500 | 0.22 | 0.22 | 400 | 625 | 0% 0% 5% 96% |
| 3,000 | 7.38 | 7.38 | 4,764 | 625 | 0% 1% 0% 100% |
| 5,500 | 24.70 | 24.71 | 5,712 | 625 | 0% 0% 0% 100% |
Read the ↓ make, command line, and program output logs to see how this program was run.
Read spectral-norm benchmark to see what this program should do.
This is SBCL 1.1.7, an implementation of ANSI Common Lisp.
;; The Computer Language Benchmarks Game ;; http://benchmarksgame.alioth.debian.org/ ;; ;; Adapted from the C (gcc) code by Sebastien Loisel ;; ;; Contributed by Christopher Neufeld ;; Modified by Juho Snellman 2005-10-26 ;; * Use SIMPLE-ARRAY instead of ARRAY in declarations ;; * Use TRUNCATE instead of / for fixnum division ;; * Rearrange EVAL-A to make it more readable and a bit faster ;; Note that sbcl is at least 10 times faster than either clisp or gcl ;; on this program, running with an argument of 500. It would be nice ;; to know why the others are so slow. (defun eval-AtA-times-u (n u) (eval-At-times-u n (eval-A-times-u n u))) ;; This is our most expensive function. Optimized with the knowledge ;; that 'n' will never be "huge". This will break if 'n' exceeds ;; approximately half of the square root of the largest fixnum ;; supported by the implementation. On sbcl 0.9.3, ;; 'most-positive-fixnum' is 536870911, and we can support values of ;; 'n' above 11000. (declaim (inline eval-A)) (defun eval-A (i j) (declare (type fixnum i j)) (let* ((n (+ i j)) (n+1 (1+ n))) (declare (fixnum n n+1)) (/ (float (+ (truncate (the fixnum (* n n+1)) 2) i 1) 0d0)))) (defun eval-A-times-u (n u) (declare (type fixnum n) (type (simple-array double-float) u)) (let ((retval (make-array n :element-type 'double-float :initial-element 0.0d0))) (dotimes (i n) (dotimes (j n) (incf (aref retval i) (* (eval-A i j) (aref u j))))) retval)) (defun eval-At-times-u (n u) (declare (type fixnum n) (type (simple-array double-float) u)) (let ((retval (make-array n :element-type 'double-float :initial-element 0.0d0))) (dotimes (i n) (dotimes (j n) (incf (aref retval i) (* (eval-A j i) (aref u j))))) retval)) (defun main (&optional n-supplied) (let ((n (or n-supplied (parse-integer (or (car (last #+sbcl sb-ext:*posix-argv* #+clisp ext:*args* #+cmu extensions:*command-line-strings* #+gcl si::*command-args*)) "2000"))))) (or (typep (* (- (* 2 n) 1) (- (* 2 n) 2)) 'fixnum) (error "The supplied value of 'n' breaks the optimizations in EVAL-A")) (let ((u (make-array n :element-type 'double-float :initial-element 1.0d0)) (v (make-array n :element-type 'double-float))) (declare (type (simple-array double-float) U V)) (dotimes (i 10) (setf v (eval-AtA-times-u n u)) (setf u (eval-AtA-times-u n v))) (let ((vBv 0.0d0) (vv 0.0d0)) (dotimes (i n) (incf vBv (* (aref u i) (aref v i))) (incf vv (* (aref v i) (aref v i)))) (format t "~11,9F~%" (sqrt (the (double-float 0d0) (/ vBv vv)))))))) ;; #+sbcl (progn ;; (sb-profile:profile eval-AtA-times-u) ;; (sb-profile:profile eval-A) ;; (sb-profile:profile eval-A-times-u) ;; (sb-profile:profile eval-At-times-u) ;; (sb-profile:profile main))
Fri, 03 May 2013 23:08:03 GMT MAKE: cp: ‘spectralnorm.sbcl’ and ‘./spectralnorm.sbcl’ are the same file SBCL built with: /usr/local/bin/sbcl --userinit /dev/null --batch --eval '(load "spectralnorm.sbcl_compile")' ### START spectralnorm.sbcl_compile (handler-bind ((sb-ext:defconstant-uneql (lambda (c) (abort c)))) (load (compile-file "spectralnorm.sbcl" ))) (save-lisp-and-die "sbcl.core" :purify t) ### END spectralnorm.sbcl_compile ; compiling file "/home/dunham/benchmarksgame/bench/spectralnorm/spectralnorm.sbcl" (written 24 JAN 2013 02:01:16 PM): ; compiling (DEFUN EVAL-ATA-TIMES-U ...) ; compiling (DECLAIM (INLINE EVAL-A)) ; compiling (DEFUN EVAL-A ...) ; compiling (DEFUN EVAL-A-TIMES-U ...) ; compiling (DEFUN EVAL-AT-TIMES-U ...) ; compiling (DEFUN MAIN ...) ; /home/dunham/benchmarksgame_onecore/spectralnorm/tmp/spectralnorm.fasl written ; compilation finished in 0:00:00.069 [undoing binding stack and other enclosing state... done] [saving current Lisp image into sbcl.core: writing 3512 bytes from the read-only space at 0x0x1000000 writing 2256 bytes from the static space at 0x0x1100000 writing 28205056 bytes from the dynamic space at 0x0x9000000 done] ### START spectralnorm.sbcl_run (main) (quit) ### END spectralnorm.sbcl_run 0.64s to complete and log all make actions COMMAND LINE: /usr/local/bin/sbcl --noinform --core sbcl.core --userinit /dev/null --load spectralnorm.sbcl_run 5500 PROGRAM OUTPUT: 1.274224153