From b8f25d647617e91adbc383775f433187ab94f99e Mon Sep 17 00:00:00 2001 From: yuecideng Date: Sat, 19 Nov 2022 07:48:41 -0800 Subject: [PATCH] fix bug for open3d cuda call --- cpp/open3d/core/CUDAUtils.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cpp/open3d/core/CUDAUtils.h b/cpp/open3d/core/CUDAUtils.h index aba1168bd97..3d07744470f 100644 --- a/cpp/open3d/core/CUDAUtils.h +++ b/cpp/open3d/core/CUDAUtils.h @@ -66,7 +66,8 @@ #define OPEN3D_CUDA_CHECK(err) #define OPEN3D_GET_LAST_CUDA_ERROR(message) #define CUDA_CALL(cuda_function, ...) \ - utility::LogError("Not built with CUDA, cannot call " #cuda_function); + open3d::utility::LogError( \ + "Not built with CUDA, cannot call " #cuda_function); #endif // #ifdef BUILD_CUDA_MODULE