boost.python 中的随机数生成器

发布于 2024-10-17 21:23:44 字数 412 浏览 3 评论 0原文

如何在“Python with numpy”代码中使用与 C++0x 代码相同的随机数生成器?

我目前

std::ranlux64_base_01

在 C++ 和

numpy.random.RandomState(10)

Python 中使用。

我公开了 C++ 的随机数生成器:

typedef std::ranlux64_base_01 RNG;
RNG g_rng;

...

class_<RNG>("RNG");
scope().attr("g_rng") = g_rng;

如何将它与采用 numpy.random 的 Python 方法一起使用?

How can I use the same random number generator in my "Python with numpy" code as my C++0x code?

I am currently using

std::ranlux64_base_01

in C++ and

numpy.random.RandomState(10)

in Python.

I exposed C++'s random number generator:

typedef std::ranlux64_base_01 RNG;
RNG g_rng;

...

class_<RNG>("RNG");
scope().attr("g_rng") = g_rng;

How do I use it with Python's methods that take a numpy.random?

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

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

发布评论

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

评论(1

梦在深巷 2024-10-24 21:23:44

有2种方法:
第一个是使用 c++ 中的 python 随机数生成器。它可能看起来像这样:

boost::python::object randmod = boost::python::import("numpy.random")
boost::python::object randfunc = randmod.attr("RandomState")
randfunc(10)

第二个是包装并公开 c++ 函数,以便可以从 python 使用它。该代码留给学生作为练习。

编辑:
导出 C++ 函数后,您必须使用 C++ 函数的随机位来创建一个模仿 numpy.random.RandomState 接口的 Python 对象。这可能比您想要做的工作更多。我没有使用过 numpy,但从文档看来 RandomState 对象并不简单。

There are 2 ways:
the first is to use pythons random number generator from c++. It will probably look something like this:

boost::python::object randmod = boost::python::import("numpy.random")
boost::python::object randfunc = randmod.attr("RandomState")
randfunc(10)

The second is to wrap and expose the c++ function so that it can be used from python. The code for this is left an an exercise for the student.

Edit:
Once you have exported the c++ function you would have to make a python object that mimics the interface of numpy.random.RandomState using the c++ function for it's random bits. This is probably more work then you want to do. I have not used numpy, but from the docs it looks like the RandomState object is not-trivial.

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