2020-02-16から1日間の記事一覧

Numba - Python実行時コンパイラ

Numba: A High Performance Python Compiler 使い方は簡単(ということにしておく)。pip install numba などでインストールしたあと from numba import jit @jit(nopython=True) def function(): ~ 以下のコードはLBPの基本機能を書いてみたのだが遅すぎて使…