CL:帮助识别分析器输出

时间:2013-03-01 21:56:19

标签: profiling common-lisp

他在this post中使用什么CL实现(或分析包)来显示按功能名称分类?我有CCL,SBCL,ECL,他们的(time (load ...就是这样的:

? (time (load "../e/3.cl"))
(LOAD "../e/3.cl")
took 3,176 milliseconds (3.176 seconds) to run.
        18 milliseconds (0.018 seconds, 0.57%) of which was spent in GC.
During that period, and with 2 available CPU cores,
       128 milliseconds (0.128 seconds) were spent in user mode
       224 milliseconds (0.224 seconds) were spent in system mode
 11,904,264 bytes of memory allocated.
 1,582 minor page faults, 77 major page faults, 0 swaps.

1 个答案:

答案 0 :(得分:2)

您希望在Common Lisp中查找计量或分析。

以上是计量工具,最初是从Mark Kantrowitz的工具集中分发的:http://www.cs.cmu.edu/afs/cs/project/ai-repository/ai/lang/lisp/code/tools/metering/0.html

现在应该有更新的版本。

相关问题