Remove py version from benchmark.py because its soooo slow

This commit is contained in:
12bitfloat 2025-10-07 00:56:44 +02:00
parent dc3e47f365
commit 1fc55424ed

View File

@ -17,7 +17,7 @@ print("Time Borded CPP:",time.time() - time_start)
time_start = time.time()
subprocess.check_output('./jisspam books/*.txt', shell=True)
print("Time Jest Rust:", time.time() - time_start)
time_start = time.time()
subprocess.check_output('python3 isspam.py books/*.txt', shell=True)
print("Time Retoor Python:",time.time() - time_start)
#time_start = time.time()
#subprocess.check_output('python3 isspam.py books/*.txt', shell=True)
#print("Time Retoor Python:",time.time() - time_start)
print("***end benchmark***")