Python 多进程、多线程效率对比


Posted in Python onNovember 19, 2020

Python 界有条不成文的准则: 计算密集型任务适合多进程,IO 密集型任务适合多线程。本篇来作个比较。

通常来说多线程相对于多进程有优势,因为创建一个进程开销比较大,然而因为在 python 中有 GIL 这把大锁的存在,导致执行计算密集型任务时多线程实际只能是单线程。而且由于线程之间切换的开销导致多线程往往比实际的单线程还要慢,所以在 python 中计算密集型任务通常使用多进程,因为各个进程有各自独立的 GIL,互不干扰。

而在 IO 密集型任务中,CPU 时常处于等待状态,操作系统需要频繁与外界环境进行交互,如读写文件,在网络间通信等。在这期间 GIL 会被释放,因而就可以使用真正的多线程。

以上是理论,下面做一个简单的模拟测试: 大量计算用 math.sin() + math.cos() 来代替,IO 密集型用 time.sleep() 来模拟。 在 Python 中有多种方式可以实现多进程和多线程,这里一并纳入看看是否有效率差异:

  1. 多进程: joblib.multiprocessing, multiprocessing.Pool, multiprocessing.apply_async, concurrent.futures.ProcessPoolExecutor
  2. 多线程: joblib.threading, threading.Thread, concurrent.futures.ThreadPoolExecutor
from multiprocessing import Pool
from threading import Thread
from concurrent.futures import ThreadPoolExecutor, ProcessPoolExecutor
import time, os, math
from joblib import Parallel, delayed, parallel_backend


def f_IO(a): # IO 密集型
 time.sleep(5)

def f_compute(a): # 计算密集型
 for _ in range(int(1e7)):
  math.sin(40) + math.cos(40)
 return

def normal(sub_f):
 for i in range(6):
  sub_f(i)
 return

def joblib_process(sub_f):
 with parallel_backend("multiprocessing", n_jobs=6):
  res = Parallel()(delayed(sub_f)(j) for j in range(6))
 return


def joblib_thread(sub_f):
 with parallel_backend('threading', n_jobs=6):
  res = Parallel()(delayed(sub_f)(j) for j in range(6))
 return

def mp(sub_f):
 with Pool(processes=6) as p:
  res = p.map(sub_f, list(range(6)))
 return

def asy(sub_f):
 with Pool(processes=6) as p:
  result = []
  for j in range(6):
   a = p.apply_async(sub_f, args=(j,))
   result.append(a)
  res = [j.get() for j in result]

def thread(sub_f):
 threads = []
 for j in range(6):
  t = Thread(target=sub_f, args=(j,))
  threads.append(t)
  t.start()
 for t in threads:
  t.join()

def thread_pool(sub_f):
 with ThreadPoolExecutor(max_workers=6) as executor:
  res = [executor.submit(sub_f, j) for j in range(6)]

def process_pool(sub_f):
 with ProcessPoolExecutor(max_workers=6) as executor:
  res = executor.map(sub_f, list(range(6)))

def showtime(f, sub_f, name):
 start_time = time.time()
 f(sub_f)
 print("{} time: {:.4f}s".format(name, time.time() - start_time))

def main(sub_f):
 showtime(normal, sub_f, "normal")
 print()
 print("------ 多进程 ------")
 showtime(joblib_process, sub_f, "joblib multiprocess")
 showtime(mp, sub_f, "pool")
 showtime(asy, sub_f, "async")
 showtime(process_pool, sub_f, "process_pool")
 print()
 print("----- 多线程 -----")
 showtime(joblib_thread, sub_f, "joblib thread")
 showtime(thread, sub_f, "thread")
 showtime(thread_pool, sub_f, "thread_pool")


if __name__ == "__main__":
 print("----- 计算密集型 -----")
 sub_f = f_compute
 main(sub_f)
 print()
 print("----- IO 密集型 -----")
 sub_f = f_IO
 main(sub_f)

结果:

----- 计算密集型 -----
normal time: 15.1212s

------ 多进程 ------
joblib multiprocess time: 8.2421s
pool time: 8.5439s
async time: 8.3229s
process_pool time: 8.1722s

----- 多线程 -----
joblib thread time: 21.5191s
thread time: 21.3865s
thread_pool time: 22.5104s



----- IO 密集型 -----
normal time: 30.0305s

------ 多进程 ------
joblib multiprocess time: 5.0345s
pool time: 5.0188s
async time: 5.0256s
process_pool time: 5.0263s

----- 多线程 -----
joblib thread time: 5.0142s
thread time: 5.0055s
thread_pool time: 5.0064s

上面每一方法都统一创建6个进程/线程,结果是计算密集型任务中速度:多进程 > 单进程/线程 > 多线程, IO 密集型任务速度: 多线程 > 多进程 > 单进程/线程。

以上就是Python 多进程、多线程效率比较的详细内容,更多关于Python 多进程、多线程的资料请关注三水点靠木其它相关文章!

Python 相关文章推荐
Python中的对象,方法,类,实例,函数用法分析
Jan 15 Python
Django自定义分页效果
Jun 27 Python
快速解决pandas.read_csv()乱码的问题
Jun 15 Python
利用Django模版生成树状结构实例代码
May 19 Python
Django发送邮件和itsdangerous模块的配合使用解析
Aug 10 Python
Python3.5 win10环境下导入kera/tensorflow报错的解决方法
Dec 19 Python
python支持多线程的爬虫实例
Dec 21 Python
基于python和flask实现http接口过程解析
Jun 15 Python
Python如何输出百分比
Jul 31 Python
让你相见恨晚的十个Python骚操作
Nov 18 Python
python 实现定时任务的四种方式
Apr 01 Python
Python-OpenCV教程之图像的位运算详解
Jun 21 Python
Python导入父文件夹中模块并读取当前文件夹内的资源
Nov 19 #Python
Pytorch实验常用代码段汇总
Nov 19 #Python
Ubuntu配置Pytorch on Graph (PoG)环境过程图解
Nov 19 #Python
python基于pygame实现飞机大作战小游戏
Nov 19 #Python
Python numpy大矩阵运算内存不足如何解决
Nov 19 #Python
python3 os进行嵌套操作的实例讲解
Nov 19 #Python
如何创建一个Flask项目并进行简单配置
Nov 18 #Python
You might like
phpMyAdmin链接MySql错误 个人解决方案
2009/12/28 PHP
php学习之 数组声明
2011/06/09 PHP
php查询相似度最高的字符串的方法
2015/03/12 PHP
php中文繁体和简体相互转换的方法
2015/03/21 PHP
php正则表达式验证(邮件地址、Url地址、电话号码、邮政编码)
2016/03/14 PHP
msn上的tab功能Firefox对childNodes处理的一个BUG
2008/01/21 Javascript
HTML5附件拖拽上传drop & google.gears实现代码
2011/04/28 Javascript
js日历功能对象
2012/01/12 Javascript
Jquery实现搜索框提示功能示例代码
2013/08/13 Javascript
两种方法实现在HTML页面加载完毕后运行某个js
2014/06/16 Javascript
JavaScript利用正则表达式去除日期中的“-”
2014/07/01 Javascript
解析ajaxFileUpload 异步上传文件简单使用
2016/12/30 Javascript
JS控件bootstrap suggest plugin使用方法详解
2017/03/25 Javascript
js断点调试经验分享
2017/12/08 Javascript
js键盘事件实现人物的行走
2020/01/17 Javascript
微信小程序返回上一级页面的实现代码
2020/06/19 Javascript
springboot+vue实现文件上传下载
2020/11/17 Vue.js
go和python调用其它程序并得到程序输出
2014/02/10 Python
详解Python的Django框架中manage命令的使用与扩展
2016/04/11 Python
python的paramiko模块实现远程控制和传输示例
2017/10/13 Python
一道python走迷宫算法题
2018/01/22 Python
Python中 map()函数的用法详解
2018/07/10 Python
Python 脚本拉取 Docker 镜像问题
2019/11/10 Python
解决python中的幂函数、指数函数问题
2019/11/25 Python
将keras的h5模型转换为tensorflow的pb模型操作
2020/05/25 Python
通过自学python能找到工作吗
2020/06/21 Python
PyCharm2020最新激活码+激活码补丁(亲测最新版PyCharm2020.2激活成功)
2020/11/25 Python
利用CSS3实现自定义滚动条代码分享
2016/08/18 HTML / CSS
20世纪40年代连衣裙和复古服装:The Seamstress Of Bloomsbury
2018/07/24 全球购物
中科创达面试题
2016/12/28 面试题
团拜会策划方案
2014/06/07 职场文书
保安辞职信范文
2015/02/28 职场文书
2015小学教师年度工作总结
2015/05/12 职场文书
pytorch 6 batch_train 批训练操作
2021/05/28 Python
关于mysql中时间日期类型和字符串类型的选择
2021/11/27 MySQL
Win11 vmware不兼容怎么办?Win11与VMware虚拟机不兼容的解决方法
2023/01/09 数码科技