- Mastering Concurrency in Python
- Quan Nguyen
- 434字
- 2021-06-10 19:23:54
Example 2 – inherently sequential tasks
Let us consider a quick example:
Computing f1000(3), with f(x) = x2 - x + 1, and fn + 1(x) = f(fn(x)).
With complicated functions like f (where it is relatively difficult to find a general form of fn(x)), the only obviously reasonable way to compute f1000(3) or similar values is to iteratively compute f2(3) = f( f(3)), f3(3) = f( f2(3)), ... , f999(3) = f( f998(3)), and, finally, f1000(3) = f( f999(3)).
Since it will take significant time to actually compute f1000(3), even when using a computer, we will only consider f20(3) in our code (my laptop actually started heating up after f25(3)):
# Chapter01/example2.py
def f(x):
return x * x - x + 1
# sequential
def f(x):
return x * x - x + 1
start = timer()
result = 3
for i in range(20):
result = f(result)
print('Result is very large. Only printing the last 5 digits:', result % 100000)
print('Sequential took: %.2f seconds.' % (timer() - start))
Run it (or use python example2.py); the following code shows the output I received:
> python example2.py
Result is very large. Only printing the last 5 digits: 35443
Sequential took: 0.10 seconds.
Now, if we were to attempt to apply concurrency to this script, the only possible way would be through a for loop. One solution might be as follows:
# Chapter01/example2.py
# concurrent
def concurrent_f(x):
global result
result = f(result)
result = 3
with concurrent.futures.ThreadPoolExecutor(max_workers=20) as exector:
futures = [exector.submit(concurrent_f, i) for i in range(20)]
_ = concurrent.futures.as_completed(futures)
print('Result is very large. Only printing the last 5 digits:', result % 100000)
print('Concurrent took: %.2f seconds.' % (timer() - start))
The output I received is shown as follows:
> python example2.py
Result is very large. Only printing the last 5 digits: 35443
Concurrent took: 0.19 seconds.
Even though both methods produced the same result, the concurrent method took almost twice as long as the sequential method. This is due to the fact that every time a new thread (from ThreadPoolExecutor) was spawned, the function conconcurrent_f(), inside that thread, needed to wait for the variable result to be processed by the previous thread completely, and the program as a whole was thus executed in a sequential manner, nonetheless.
So, while there was no actual concurrency involved in the second method, the overhead cost of spawning new threads contributed to the significantly worse execution time. This is one example of inherently sequential tasks, where concurrency or parallelism should not be applied to attempt an improvement in execution time.
- Java 開發從入門到精通(第2版)
- C語言程序設計(第2版)
- Python Deep Learning
- 微服務設計原理與架構
- Building Cross-Platform Desktop Applications with Electron
- Visual Basic程序設計實驗指導(第4版)
- 從學徒到高手:汽車電路識圖、故障檢測與維修技能全圖解
- 利用Python進行數據分析(原書第3版)
- 表哥的Access入門:以Excel視角快速學習數據庫開發(第2版)
- 零基礎學Python編程(少兒趣味版)
- Getting Started with Python
- 零基礎學HTML+CSS第2版
- 零基礎學C語言(第4版)
- Learning Jakarta Struts 1.2: a concise and practical tutorial
- HTML5 WebSocket權威指南