2019年9月7日土曜日

jupyter %%timeit を使うときにセルの一行目にないとエラーになる

%timeit は一行を測定
%%timeit はセル全部を測定します

s = (size, size)
%%timeit -n1 -r1 m = np.zeros(s, dtype=np.int32)
mandelbrot_cython(m, size, iterations)

というように、同じセルの中でやると

UsageError: Line magic function '%%timeit' not found.

となります。

この内容をやっていたときに起きたエラーです。
https://ipython-books.github.io/55-accelerating-python-code-with-cython/

0 件のコメント:

コメントを投稿