From 94f5052fc8de2d90d7afc4f4129dd2fe2c0655cc Mon Sep 17 00:00:00 2001 From: RealStickman Date: Mon, 14 Nov 2022 16:02:02 +0100 Subject: [PATCH] Add small sample pool function --- main.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/main.py b/main.py index 4b0b3ea..ba9e676 100755 --- a/main.py +++ b/main.py @@ -294,3 +294,19 @@ if __name__ == "__main__": # FIXME empty dictionary here print("Dynamically normalized music:") print(nonlinear) + +""" +from multiprocessing.pool import ThreadPool + +def test(i): + return([i,{"2":i*2,"3":i*3}]) + + +list = [1,2,3,4,5] + +with ThreadPool(8) as t: + out = t.starmap(test,zip(list)) + +for i in out: + print(i) +"""