sudo apt install python-pycuda
$ wget http://pypi.python.org/pypi/pycuda
$ tar xfz pycuda-VERSION.tar.gz
$ cd pycuda-VERSION # if you're not there already
$ python configure.py --cuda-root=/where/ever/you/installed/cuda
$ su -c "make install"
$ cd pycuda-VERSION/test
$ python test_driver.py
出力OKは成功です。
$ cd pycuda-VERSION/examples
$ python test_demo.py
import pycuda.autoinit
import pycuda.driver
free_bytes, total_bytes = pycuda.driver.mem_get_info() #現在のグラフィックカードの合計ビデオメモリ、使用可能なビデオメモリを照会します
[ 公式文書](https://documen.tician.de/pycuda/driver.html)
Recommended Posts