【发布时间】:2016-05-14 05:02:05
【问题描述】:
我最近偶然发现了 boost.odeint 库,我对它的可能性和可配置性的数量感到惊讶。但是,在广泛使用 scipy.integrate.odeint (本质上是 fortran 中 ODEPACK 的包装器)之后,我想知道它们的性能比较如何。我知道 boost.odeint 也带有并行化,这对于 scipy (据我所知)来说是不可能的,这会大大提高性能,但我要求的是单核案例。 但是,由于在这种情况下我必须将 boost.odeint(使用 cython 或 boost.python)包装到 python 中,也许你们中的某些人已经这样做了?这将是一个伟大的成就,因为所有的分析可能性都在 python 中更高级。
【问题讨论】:
标签: python c++ boost numerical-methods differential-equations