From e857bc6745940ab3da6750665ffbcd981c86ecba Mon Sep 17 00:00:00 2001 From: Alauddin Maulana Hirzan Date: Wed, 19 Jun 2024 05:19:51 +0700 Subject: [PATCH] Update MIPS Benchmark --- MIPS-Benchmark/MIPSBenchmark.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/MIPS-Benchmark/MIPSBenchmark.py b/MIPS-Benchmark/MIPSBenchmark.py index 38789a2..4c49196 100644 --- a/MIPS-Benchmark/MIPSBenchmark.py +++ b/MIPS-Benchmark/MIPSBenchmark.py @@ -29,12 +29,11 @@ class MIPSBenchmark: def run(self): print("# MIPS CPU Benchmark #") print("# Running 7 Basic ALU Ops #") - + print("# Please Wait #") + self.start_time = time() for i in range(1, self.iters+1): - print(f"=> Running Iteration #{str(i)}", end="\r") self.ips_operation() - print("\n") self.end_time = time() self.calculate()