【Python】Benchmarker.pyを使ってマルチスレッドの速度をチェックする方法
from benchmarker import Benchmarker | |
import threading | |
def f(x): | |
x**2 | |
with Benchmarker(10000, width=20) as bench: | |
@bench("mt") | |
def _(bm): | |
for i in bm: | |
threading.Thread(target=f, args=(i,)).start() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment