boost.python 中的随机数生成器
如何在“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有2种方法:
第一个是使用 c++ 中的 python 随机数生成器。它可能看起来像这样:
第二个是包装并公开 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:
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.