How do I use TensorFlow GPU?

Follow this tutorial Tensorflow GPU I did it and it works perfect. Attention! – install version 9.0! newer version is not supported by Tensorflow-gpu Steps: Uninstall your old tensorflow Install tensorflow-gpu pip install tensorflow-gpu Install Nvidia Graphics Card & Drivers (you probably already have) Download & Install CUDA Download & Install cuDNN Verify by simple … Read more

sending 3d array to CUDA kernel

First of all, I think talonmies when he posted the response to the previous question you mention, was not intending that to be representative of good coding. So figuring out how to extend it to 3D might not be the best use of your time. For example, why do we want to write programs which … Read more

Utilizing the GPU with c# [closed]

[Edit OCT 2017 as even this answer gets quite old] Most of these answers are quite old, so I thought I’d give an updated summary of where I think each project is: GPU.Net (TidePowerd) – I tried this 6 months ago or so, and did get it working though it took a little bit of … Read more

How is CUDA memory managed?

The device memory available to your code at runtime is basically calculated as Free memory = total memory – display driver reservations – CUDA driver reservations – CUDA context static allocations (local memory, constant memory, device code) – CUDA context runtime heap (in kernel allocations, recursive call stack, printf buffer, only on Fermi and newer … Read more