码迷,mamicode.com
首页 > 编程语言 > 详细

python 在不同CPU上同时运行多个程序

时间:2018-10-19 21:56:04      阅读:353      评论:0      收藏:0      [点我收藏+]

标签:...   util   core   tar   dual   ssi   python   cpu   hat   

出处/From https://www.quora.com/If-you-run-Python-under-a-dual-core-CPU-then-can-you-run-two-Python-programs-at-once-one-that-utilizes-1-core-and-the-other-utilizing-the-other-core

In [24]: import os
In [25]: import numpy as np
In [26]: from multiprocessing import Process
In [27]: class MyProc(Process):
    ...:     def __init__(self, num):
    ...:         self.num = num
    ...:         super().__init__()
    ...:
    ...:     def run(self):
    ...:         print(f‘Process {self.num} starting...PID {os.getpid()}‘)
    ...:         np.random.seed(self.num)
    ...:         total = np.sum([np.random.randint(10_000)
                        for _ in range(10_000_000)])
    ...:         print(f‘Total sum = {total}‘)
    ...:
 
In [28]: procs = [MyProc(i) for i in range(2)]
 
In [29]: for p in procs:
    ...:     p.start()
    ...:
 
Process 0 starting...PID 92402
Process 1 starting...PID 92403
In [30]: for p in procs:
    ...:     p.join()
    ...:
Total sum = 50003085304
Total sum = 49988200971

python 在不同CPU上同时运行多个程序

标签:...   util   core   tar   dual   ssi   python   cpu   hat   

原文地址:https://www.cnblogs.com/yaos/p/9818625.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!