What is the purpose of unbinding a CUDA texture bound to linear memory or CUDA Array?
In many of my CUDA programs, I use textures bound to pitch linear memory using cudaBindTexture2D. At the end of the function, I use cudaUnbindTexture to release the texture.
A few times it happened that I forgot to unbind the texture. But it had no apparent affect on the performance and results of the function.
Is it really necessary to unbind the texture? What are the possible consequences if I don't unbind it? Will it cause a memory leak?
