From 1fc55424ed7940fee0b3e00ca2a415198fbd4785 Mon Sep 17 00:00:00 2001 From: 12bitfloat <12bitfloat@example.com> Date: Tue, 7 Oct 2025 00:56:44 +0200 Subject: [PATCH] Remove py version from benchmark.py because its soooo slow --- bench.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bench.py b/bench.py index cc995cb..c7fe45e 100644 --- a/bench.py +++ b/bench.py @@ -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***")