Hi,

Is there any way to hold persistent storage of data on the gpu so that we
don't have to repeatedly the data sent each time.

If I do the next for example :

a_gpu = gpuarray.to_gpu(a)
b_gpu = gpuarray.to_gpu(b)
c_gpu = gpuarray.to_gpu(c)
temp_gpu = culinalg.dot(a_gpu, b_gpu)
d_gpu = culinalg.dot(temp_gpu, c_gpu)

To get the var d_gpu wa the matrix temp_gpu resent to the GPU or the result
that already exists on the GPU was used?

thaks.
-- 
View this message in context: 
http://pycuda.2962900.n2.nabble.com/Persistent-storage-on-GPU-tp6004242p6004242.html
Sent from the PyCuda mailing list archive at Nabble.com.

_______________________________________________
PyCUDA mailing list
[email protected]
http://lists.tiker.net/listinfo/pycuda

Reply via email to