Open3D icon indicating copy to clipboard operation
Open3D copied to clipboard

Summarize the bug (e.g., "Segmentation Fault for Colored Point Cloud Registration")

Open wangmiaowei opened this issue 3 years ago • 0 comments

Checklist

Describe the issue

I have been running PCD.estimate_normals both on GPU and CPU but the speed on GPU is really slow!

Steps to reproduce the bug

import time
start = time.time()
pcd.estimate_normals()
end =time.time()
print('cpu process time: ',end-start)

pcd_cuda = pcd.cuda()
start = time.time()
pcd_cuda.estimate_normals()
end =time.time()
print('cpu process time: ',end-start)

Error message

No response

Expected behavior

No response

Open3D, Python and System information

- Operating system: Ubuntu 20.04 / macOS 10.15 / Windows 10 64-bit
- Python version: Python 3.8 / output from `import sys; print(sys.version)`
- Open3D version: output from python: `print(open3d.__version__)`
- System architecture: x86 / arm64 / apple-silicon / jetson / rpi
- Is this a remote workstation?: yes or no
- How did you install Open3D?: pip / conda / build from source
- Compiler version (if built from source): gcc 7.5 / clang 7.0

Additional information

No response

wangmiaowei avatar Sep 05 '22 08:09 wangmiaowei