Add small sample pool function

This commit is contained in:
RealStickman 2022-11-14 16:02:02 +01:00
parent ae73c49742
commit 294d7edaf7

View File

@ -294,3 +294,19 @@ if __name__ == "__main__":
# FIXME empty dictionary here # FIXME empty dictionary here
print("Dynamically normalized music:") print("Dynamically normalized music:")
print(nonlinear) 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)
"""