如何为我的 sml 代码计时?
谁能告诉我如何为我的 sml 代码计时?
我已经实现了同一算法的几个不同版本,并且想对它们进行计时,甚至可能知道内存使用情况?
Can anyone tell me how I can time my sml code?
I have implemented several different versions of the same algorithm and would like to time them and perhaps even know the memoryusage?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Timer 模块就是您想要的。它可以为您提供 cpu 时间(为您提供用户、系统和 gc 时间)或挂钟时间。
有关如何使用它的示例,请参阅 MyLib 的 Benchmark 模块。
为了了解您的算法使用了多少内存,您可以绑定 MLton 的 分析 功能。但请注意,我实际上从未使用过这个,但它声明:
The Timer module is what you want. It can either give you cpu time (gives you user, sys and gc times) or wall clock time.
For example of how to use it see the Benchmark module of MyLib.
With respect to finding out how much memory your algorithms are using, you might bind the profiling feature of MLton handy. Note however that i have actually never used this, but it states that: