Intel oneDNN は,TensorFlow, Chainer, Caffe, PyTorch などさまざまなディープラーニングの応用の性能向上に役立つとされる.
iDeep は,Chainer のモジュールで,Intel MKL-DNNを用いて,ディープニューラルネットの高速化を行う.
先人に感謝.
Ubuntu で OS のシステム更新を行うときは, 端末で,次のコマンドを実行.
sudo apt update sudo apt -yV upgrade sudo /sbin/shutdown -r now
Intel oneDNN は,TensorFlow, Chainer, Caffe, PyTorch などさまざまなディープラーニングの応用の性能向上に役立つとされる.
https://github.com/oneapi-src/oneDNN/releases よりファイルをダウンロードして,使用する.
cd /tmp wget https://github.com/oneapi-src/oneDNN/releases/download/v1.5/dnnl_lnx_1.5.0_cpu_iomp.tgz cd /usr/local sudo tar -xvzof /tmp/dnnl_lnx_1.5.0_cpu_iomp.tgz echo "/usr/local/dnnl_lnx_1.5.0_cpu_iomp/lib" | sudo tee -a /etc/ld.so.conf sudo /sbin/ldconfig
端末で,次のコマンドを実行.
sudo pip3 install ideep4py
cd /tmp git clone https://github.com/intel/chainer cd chainer sudo python3 setup.py install