-
-
Notifications
You must be signed in to change notification settings - Fork 10.9k
BUG: Segmentation fault when working with open3d #26853
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
This is not an issue with NumPy, please search the issues at |
Have you solved this problem? I'm also having the same issue, can you tell me what to do?Thank you veeeeeery much |
Yeah, by downgrading it to numpy < 2.0.0 |
Great, this method worked, thank you again!!! |
Same here, downgrading to |
A quick search for "numpy" and "segmentation" leads to many open issues in that project. Unless we can get a clearer reproducer, I am going to assume the crash is in |
Describe the issue:
I encountered a segmentation fault when drawing using open3d
There are 2 variables XYZ and XYZreformat
However XYZ give a segmentation fault, even when I reassign its data type to float64 by using XYZ = XYZ.astype(np.float64)
Only the code below works
Note: The older version seems to work but not with the version 2.0.0
depth.csv
Reproduce the code example:
Error message:
Python and NumPy Versions:
2.0.0
3.10.12 (main, Nov 20 2023, 15:14:05) [GCC 11.4.0]
Runtime Environment:
[{'numpy_version': '2.0.0',
'python': '3.10.12 (main, Nov 20 2023, 15:14:05) [GCC 11.4.0]',
'uname': uname_result(system='Linux', node='alterraonix-LOQ', release='6.5.0-41-generic', version='#41~22.04.2-Ubuntu SMP PREEMPT_DYNAMIC Mon Jun 3 11:32:55 UTC 2', machine='x86_64')},
{'simd_extensions': {'baseline': ['SSE', 'SSE2', 'SSE3'],
'found': ['SSSE3',
'SSE41',
'POPCNT',
'SSE42',
'AVX',
'F16C',
'FMA3',
'AVX2'],
'not_found': ['AVX512F',
'AVX512CD',
'AVX512_KNL',
'AVX512_KNM',
'AVX512_SKX',
'AVX512_CLX',
'AVX512_CNL',
'AVX512_ICL']}},
{'architecture': 'Haswell',
'filepath': '/home/alterraonix/.local/lib/python3.10/site-packages/numpy.libs/libscipy_openblas64_-99b71e71.so',
'internal_api': 'openblas',
'num_threads': 12,
'prefix': 'libscipy_openblas',
'threading_layer': 'pthreads',
'user_api': 'blas',
'version': '0.3.27'}]
Context for the issue:
This might lead to other problems since this is a segmentation fault with another library so I reported it
The text was updated successfully, but these errors were encountered: