Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
MATLAB有一个很好的功能gpuArray();,可以利用 GPU 以闪电般的速度执行操作(尤其是在安装了好显卡的情况下)。对于神经网络,这是必要的,因为输入矩阵很大,并且执行了许多复杂的操作。
MATLAB
gpuArray();
在matlab中,这只是通过这段代码完成的, G = gpuArray(ones(100, 'uint32'));
G = gpuArray(ones(100, 'uint32'));
Python中有类似的东西吗?也就是说,一个像 MATLAB 的 GPU 库一样易于使用的开源库。
提前致谢!
我想你会在 PyCUDA 中找到你想要的东西:
http://documen.tician.de/pycuda/array.html