multiprocessing.Queue 的工作示例
在从这个问题中指出它之后,我正在寻找 multiprocessing.Queue 的工作示例: Python 利用多个处理器
我遇到了这个,但它似乎只使用了我的 12 个处理器之一,即使我更改了 num_processes=12
。我还更改了 num_jobs = 200000
,这样它就不会那么快完成。
有人可以告诉我这个例子有什么问题或者指出一个可行的例子吗?
I am looking for a working example of multiprocessing.Queue after being pointed to it from this question: Python utilizing multiple processors
I came across this, but it only seems to use one of my 12 processors even when I change num_processes=12
. I also changed num_jobs = 200000
so that it wouldn't complete so fast.
Can someone tell me what's wrong with that example or point me to one that works?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Python 文档中有一些示例。
这些例子有用吗?如果不是,则问题可能不是 Python 本身,而是其他问题。
There are examples in the Python docs.
Do these examples work? If not, it may be that the problem itself is not Python, but something else instead.