parallelizing combinations python [closed]
问题 Closed . This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post. Closed 5 years ago . How to parallelize the below code, number of elements in the attributes column is nearly 15 and so combination is taking more time. combs = set() for L in range(0,len(attributes)+1): combs.add(itertools.combinations(attributes,L)) Any way to parallelize it using multiprocessing? I tried this, but i