Skip to content

Commit

Permalink
quotes adapted
Browse files Browse the repository at this point in the history
  • Loading branch information
gertingold committed Jun 5, 2024
1 parent 3b83cea commit f89f775
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manuscript/profiling.rst
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ with the use of the corresponding function of the ``math`` module::
for n in np.logspace(0.31, 6, 300):
nint = int(n)
t_numpy = timeit.timeit('f_numpy(nint)', number=10, globals=globals())
t_math = timeit.timeit("f_math(nint)", number=10, globals=globals())
t_math = timeit.timeit('f_math(nint)', number=10, globals=globals())
x.append(nint)
y.append(t_math/t_numpy)
Expand Down

0 comments on commit f89f775

Please sign in to comment.