We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d012c33 commit 4a1b375Copy full SHA for 4a1b375
ulab_Crunch_Numbers_Fast/benchmark.py
@@ -33,7 +33,7 @@ def timeit(s, f, n=100):
33
x = f()
34
t1 = time.monotonic_ns()
35
r = (t1 - t0) * 1e-6 / n
36
- print("%-20s : %8.3fms [result=%f]" % (s, r, x))
+ print("%-30s : %8.3fms [result=%f]" % (s, r, x))
37
38
print("Computing the RMS value of 100 numbers")
39
timeit("traditional", lambda: normalized_rms(nums_list))
0 commit comments