Skip to content

Commit a17e8d1

Browse files
committed
correctly report the size of array benchmarked
1 parent f47a1bb commit a17e8d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ulab_Crunch_Numbers_Fast/benchmark.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ def timeit(s, f, n=100):
3535
r = (t1 - t0) * 1e-6 / n
3636
print("%-20s : %8.3fms [result=%f]" % (s, r, x))
3737

38-
print("Computing the RMS value of 1000 numbers")
38+
print("Computing the RMS value of 100 numbers")
3939
timeit("traditional", lambda: normalized_rms(nums_list))
4040
timeit("ulab", lambda: normalized_rms_ulab(nums_array))

0 commit comments

Comments
 (0)