测量字节码使用情况
我正在寻找一种绝对方法来对 python 中执行的计算进行基准测试/测量。在 Java 中,可以计算给定指令集的字节码使用情况。我可以在 Python 中采用类似的方法吗?
我愿意接受用于测量执行的计算的替代建议,只要方差很小(例如,时间对运行代码的机器太敏感)。
I'm looking for an absolute method to benchmark/measure computations performed in python. In Java, it's possible to calculate the bytecode usage for a given set of instructions. Is there a similar approach I could take in Python?
I'm open to alternative suggestions for measuring computation performed so long as the variance is minimal (time for example, is far too sensitive to the machine the code is being run on).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看
dis
模块。Check out the
dis
module.