This is the cl-performance-tuning-helper Reference Manual, version 0.3.0, generated automatically by Declt version 4.0 beta 2 "William Riker" on Sun Sep 15 04:20:17 2024 GMT+0.
The main system appears first, followed by any subsystem dependency.
Files are sorted by type and then listed depth-first from the systems components trees.
cl-performance-tuning-helper/cl-performance-tuning-helper.asd
cl-performance-tuning-helper/cl-performance-tuning-helper.lisp
cl-performance-tuning-helper/cl-performance-tuning-helper.asd
cl-performance-tuning-helper
(system).
cl-performance-tuning-helper/cl-performance-tuning-helper.lisp
cl-performance-tuning-helper
(system).
asmout
(function).
cload
(function).
performance
(macro).
trash-outputs
(macro).
Packages are listed by definition order.
cl-performance-tuning-helper
pth
common-lisp
.
asmout
(function).
cload
(function).
performance
(macro).
trash-outputs
(macro).
Definitions are sorted by export status, category, package, and then by lexicographic order.
do performance test with specified arguments
usage: (performance num-repeats debugger-p (function &rest args))
num-repeats: designates a number of repeats in positive integer.
If you want to reference current repeat count from testing function,
you should specify num-repeats as following format:
(count-variable positive-integer).
debugger-p: designate enable to call debugger for ANY conditions.
function: a symbol of function or a lambda expression.
e.g.
(let ((max 5))
(pth:performance (i max) nil (format t "SAMPLE: ~d of ~d~%" i max)) )
=> t
—-
;;; performance test for FORMAT MAX times
;;; do (FORMAT T "SAMPLE: ~d of ~d~%" I MAX)
SAMPLE: 0 of 5
SAMPLE: 1 of 5
SAMPLE: 2 of 5
SAMPLE: 3 of 5
SAMPLE: 4 of 5
(and following platform dependant output of TIME function)
trash system stream outputs:
*standard-output*,
*error-output*,
and *trace-output*.
Jump to: | A C F M P T |
---|
Jump to: | A C F M P T |
---|
Jump to: | C F P S |
---|
Jump to: | C F P S |
---|