如何为我的 sml 代码计时?

发布于 2024-12-19 05:58:48 字数 78 浏览 2 评论 0原文

谁能告诉我如何为我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浮云落日 2024-12-26 05:58:48

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:

you can profile your program to find out how many bytes each function allocates.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文