Tensorflow 是運用 data flow graphs 觀念進行數值計算的開源程式庫,經常被應用在機器學習和深度神經網路研究等機器智慧研究領域上。
- 安裝篇
- Windows
- Windows 10 + NVIDIA GPU + TensorFlow
- Installing TensorFlow on Windows
- Install TensorFlow with GPU for Windows 10
- Mac OS X
- Ubuntu
- 社群篇
- 學習篇
- GitHub
from numbapro import cuda, vectorize, guvectorize, check_cuda from numbapro import void, uint8 , uint32, uint64, int32, int64, float32, float64, f8 import numpy as np check_cuda()
------------------------------libraries detection-------------------------------
Finding cublas
located at d:\Anaconda3\envs\tensorflow-gpu\DLLs\cublas64_70.dll
trying to open library... ok
Finding cusparse
located at d:\Anaconda3\envs\tensorflow-gpu\DLLs\cusparse64_70.dll
trying to open library... ok
Finding cufft
located at d:\Anaconda3\envs\tensorflow-gpu\DLLs\cufft64_70.dll
trying to open library... ok
Finding curand
located at d:\Anaconda3\envs\tensorflow-gpu\DLLs\curand64_70.dll
trying to open library... ok
Finding nvvm
located at d:\Anaconda3\envs\tensorflow-gpu\DLLs\nvvm64_30_0.dll
trying to open library... ok
finding libdevice for compute_20... ok
finding libdevice for compute_30... ok
finding libdevice for compute_35... ok
-------------------------------hardware detection-------------------------------
Found 2 CUDA devices
id 0 b'GeForce GTX 1060 6GB' [SUPPORTED]
compute capability: 6.1
pci device id: 0
pci bus id: 2
id 1 b'GeForce GTX 650' [SUPPORTED]
compute capability: 3.0
pci device id: 0
pci bus id: 1
Summary:
2/2 devices are supported
PASSED
Out[1]:
True