C++与 Python 执行时间数学运算

发布于 2025-01-10 00:43:08 字数 1432 浏览 0 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

你如我软肋 2025-01-17 00:43:09

Python 是一种解释性语言,而 C++ 则被编译为机器代码。这使得 C++ 编译器能够生成高度优化的代码,而 python 解释器“必须考虑更多才能执行程序”。

您可以编译 python 代码(如 Samwise 所说),例如,使用 Cython

另外,您在 C++ 中使用 32 位浮点数,这会产生与 python 的 64 位(?)数字不同的浮点错误。将类型从 float 更改为 double 至少会为 totris< 创建相同的结果(除了较小的浮点错误) /代码>。感谢@Michael Szczesny 指出这个错误。

Python is an interpreted language while C++ gets compiled to machine code. This enables a C++ compiler to produce highly optimized code while the python interpreter "has to think more in order to execute the program".

You could compile the python code (as Samwise said), e.g., with Cython.

Also, you are using 32-bit floats in C++ which yield different floating point errors than the 64-bit (?) numbers of python. Changing the type from float to double at least created the same (apart from minor floating point errors) result for tot and ris. Thanks @Michael Szczesny for pointing towards this bug.

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