Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to optimize the display of progress bar by python multi-process

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)05/31 Report--

Today Xiaobian to share with you how to optimize the python multi-process display progress bar related knowledge points, detailed content, clear logic, I believe most people still know too much about this knowledge, so share this article for everyone to refer to, I hope you have some harvest after reading this article, let's learn about it together.

1. Using the imap method of the multiprocessing process pool, the function is applied to all elements of the iterable object in turn and sent to multiple processes.

2. With tqdm library, the overall execution progress of multi-process code can be displayed through progress bar.

examples

from multiprocessing import Poolfrom tqdm import tqdmimport mathimport numpy as np def func(x): return math.sin(x)+math.cos(x)with Pool(processes = 20) as pool: result = list(tqdm(pool.imap(func, np.linspace(0,2*math.pi,1000)), total=1000)) The above is "Python multi-process how to optimize the display progress bar" All the contents of this article, thank you for reading! I believe everyone has a great harvest after reading this article. Xiaobian will update different knowledge for everyone every day. If you want to learn more knowledge, please pay attention to the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report