您可以使用 Python/C API 创建 Python 字符串,这将比任何专门使用 Python 的方法快得多,因为 Python 本身是在 Python/C 中实现的。性能可能主要取决于随机数生成器的效率。如果您使用的是具有合理 random(3) 实现的系统,例如glibc中的那个,那么随机字符串的有效实现将如下所示:
#include <Python.h>
/* gcc -shared -fpic -O2 -I/usr/include/python2.7 -lpython2.7 rnds.c -o rnds.so */
static PyObject *rnd_string(PyObject *ignore, PyObject *args)
{
const char choices[] = {'0', '1'};
PyObject *s;
char *p, *end;
int size;
if (!PyArg_ParseTuple(args, "i", &size))
return NULL;
// start with a two-char string to avoid the empty string singleton.
if (!(s = PyString_FromString("xx")))
return NULL;
_PyString_Resize(&s, size);
if (!s)
return NULL;
p = PyString_AS_STRING(s);
end = p + size;
for (;;) {
unsigned long rnd = random();
int i = 31; // random() provides 31 bits of randomness
while (i-- > 0 && p < end) {
*p++ = choices[rnd & 1];
rnd >>= 1;
}
if (p == end)
break;
}
return s;
}
static PyMethodDef rnds_methods[] = {
{"rnd_string", rnd_string, METH_VARARGS },
{NULL, NULL, 0, NULL}
};
PyMODINIT_FUNC initrnds(void)
{
Py_InitModule("rnds", rnds_methods);
}
使用 halex 的基准测试此代码表明它比原始代码快 280 倍,比 halex 的代码(在我的机器上)快 2.3 倍:
# the above code
>>> t1 = Timer("rnds.rnd_string(2**20)", "import rnds")
>>> sorted(t1.repeat(10,1))
[0.0029861927032470703, 0.0029909610748291016, ...]
# original generator
>>> t2 = Timer("''.join(random.choice('01') for x in xrange(2**20))", "import random")
>>> sorted(t2.repeat(10,1))
[0.8376679420471191, 0.840252161026001, ...]
# halex's generator
>>> t3 = Timer("bin(random.getrandbits(2**20-1))[2:].zfill(2**20-1)", "import random")
>>> sorted(t3.repeat(10,1))
[0.007007122039794922, 0.007027149200439453, ...]
将 C 代码添加到项目中是一件复杂的事情,但对于关键操作的 280 倍加速,这可能是值得的。
为了进一步提高效率,研究更快的 RNG,并从单独的线程调用它们,以便并行化随机数生成是并行化的。后者将受益于无锁同步机制,以确保线程间通信不会阻碍原本快速的生成过程。