如何使用多处理进行 1000 次模拟



def array_generator(total_array,i):
rd_array = np.random.rand(18,100)
total_array[i] = rd_array
return total_array[i]

现在我想做1000个模拟并存储到total_array 如何使用多处理生成 1000 个仿真?

非常感谢:(

我建议你可以通过运行这个函数1000次来使用concurrent.futures模块。

https://coderzcolumn.com/tutorials/python/concurrent-futures

上面的教程有一个简单的例子,你可以尝试模仿。

相关内容

  • 没有找到相关文章

最新更新