You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The GPU kinfu does not build with CUDA 12.0 because this version of CUDA dropped legacy texture references (specifically used in marching_cubes.cu).
Current Behavior
pcl/gpu/kinfu/src/cuda/marching_cubes.cu(51): error: texture is not a template
pcl/gpu/kinfu/src/cuda/marching_cubes.cu(52): error: texture is not a template
pcl/gpu/kinfu/src/cuda/marching_cubes.cu(61): error: identifier "cudaBindTexture" is undefined
pcl/gpu/kinfu/src/cuda/marching_cubes.cu(68): error: identifier "cudaUnbindTexture" is undefined
pcl/gpu/kinfu/src/cuda/marching_cubes.cu(160): error: no instance of overloaded function "tex1Dfetch" matches the argument list
argument types are: (<error-type>, int)
pcl/gpu/kinfu/src/cuda/marching_cubes.cu(344): error: no instance of overloaded function "tex1Dfetch" matches the argument list
argument types are: (<error-type>, int)
pcl/gpu/kinfu/src/cuda/marching_cubes.cu(350): error: no instance of overloaded function "tex1Dfetch" matches the argument list
argument types are: (<error-type>, int)
pcl/gpu/kinfu/src/cuda/marching_cubes.cu(351): error: no instance of overloaded function "tex1Dfetch" matches the argument list
argument types are: (<error-type>, int)
pcl/gpu/kinfu/src/cuda/marching_cubes.cu(352): error: no instance of overloaded function "tex1Dfetch" matches the argument list
argument types are: (<error-type>, int)
9 errors detected in the compilation of "pcl/gpu/kinfu/src/cuda/marching_cubes.cu".
Describe the bug
The GPU kinfu does not build with CUDA 12.0 because this version of CUDA dropped legacy texture references (specifically used in
marching_cubes.cu
).Current Behavior
To Reproduce
Your Environment (please complete the following information):
Possible Solution
Replace texture references with texture objects.
The text was updated successfully, but these errors were encountered: