import multiprocessing
import time
from itertools import product
out_file = open("test.txt", 'w')
P = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p','q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z',]
N = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
M = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z']
c = int(input("Insert the number of digits you want: "))
n = int(input("If you need number press 1: "))
m = int(input("If you need upper letters press 1: "))
i = []
if n == 1:
P = P + N
if m == 1:
P = P + M
then = time.time()
def worker():
for i in product(P, repeat=c): #check every possibilities
k = ''
for z in range(0, c): #
k = k + str(i[z]) # print each possibility in a txt without parentesis or comma
out_file.write( k + '\n') #
out_file.close()
now = time.time()
diff = str(now - then) # To see how long does it take
print(diff)
worker()
time.sleep(10) # just to check console
代码检查每种可能性并将其打印在test.txt
文件中。
它有效,但我真的无法理解如何加快速度。我看到它使用了我的四核CPU中的1核,所以我认为多线程可能会工作,即使我不知道如何。请帮我。
抱歉我的英语,我来自意大利。
答案 0 :(得分:0)
由于一个简单的原因,您目前无法将此代码并行化为当前状态。
你的工作职能中有竞争条件。如果一个进程要关闭输出文件,则任何需要打开文件的其他进程都会引发异常。
您有两种方法可以解决此问题:
从函数中删除关闭的文件,并将所有文件写入包装在互斥锁中,以确保文件写入一次只能由一个进程完成。
从worker函数中删除所有文件访问权限,并将其返回到数组中。这样,您可以并行运行多个工作程序,并在所有进程完成后整理结果。这样,您就可以在代码末尾处理来自主线程/进程的所有文件访问。