I’m investigating porting from python/pycuda to julia/CUDA.jl.
Pycuda supports Texture / Surface Reference API, so we can read the data with interpolation through a texture reference, and write data through a surface reference. It can also switch texture and surface references from a common back-end buffer.
I expected a similar feature in julia and found that CUDA Texture is supported in CuDeviceTexture.
CUDA Surface implementation could not be found, is this not supported? Are there support plans for the future?