Hi, I got the following message when I trying to import a XYZfile with a .obj mesh In function InitializeChrono() in ProblemCore.cc
Breakpoint 1, ProblemCore::InitializeChrono (this=0x5555566366e0)
at src/ProblemCore.cc:214
214 m_bodies_physical_system = new ::chrono::ChSystemNSC();
(gdb) n
Program received signal SIGSEGV, Segmentation fault.
_int_malloc (av=av@entry=0x7ffff5886c40 <main_arena>,
bytes=bytes@entry=3735575) at malloc.c:4100
4100 malloc.c: No such file or directory.
Obversely, crash inside the Sharedlibrary.
It is strange because I have successfully import some other geometry before.
Can you help me with that? and I can provide you the data file. I think this bug is not difficult to find, if one can debug inside libChronoEngine.so
The first thing to do would be to build GPUSPH with debugging symbols for the host code (you can do that by adding CPPFLAGS += -g in your Makefile.local), then run a backtrace in the debugger after the segmentation fault, to see at which point in GPUSPH the issue is happening, and if possible where inside Chrono as well (for that, you should also build Chrono with debugging symbols enabled).
In our experience, most issues with Chrono miscompilations are due to either Chrono and GPUSPH being built with incompatible compiler versions (this used to be a problem for us often during the transition from C++98 to C++11, since the ABIs were different), or because the development files for Chrono (headers and linking library) did not match the Chrono library version used at runtime. So you might want to check that you do not have one of these problems.
However, I don’t believe I have the problems you said.
I have read the relative source file in chrono according to backtrace. And i found all the relative parameters are default ones, which means at least in this function IntializeChrono have no relationship with the import files.
Then I did a simple test. move this sentence “IntializeChrono()” to the beginning of ProblemAPI_1.cc::Initialize(). I pass.
But the same SIGSEGV shows when FillIn. I will attach the backtrace below.
So weird. I have to suspect that there have some pointer have not been initialized(NULL) or, some auxiliary array have not been free.
Program received signal SIGSEGV, Segmentation fault.
_int_malloc (av=av@entry=0x7ffff5886c40 <main_arena>, bytes=bytes@entry=131072)
at malloc.c:4100
4100 malloc.c: No such file or directory.
(gdb) bt #0 _int_malloc (av=av@entry=0x7ffff5886c40 <main_arena>,
bytes=bytes@entry=131072) at malloc.c:4100 #1 0x00007ffff553216c in __GI___libc_malloc (bytes=131072) at malloc.c:3057 #2 0x00007ffff5ed5298 in operator new(unsigned long) ()
from /usr/lib/x86_64-linux-gnu/libstdc++.so.6 #3 0x0000555555701414 in __gnu_cxx::new_allocator::allocate (
this=0x555556636938, __n=4096)
at /usr/include/c++/8/ext/new_allocator.h:111 #4 0x0000555555700082 in std::allocator_traits<std::allocator >::allocate (__a=…, __n=4096) at /usr/include/c++/8/bits/alloc_traits.h:436 #5 0x00005555556fd522 in std::_Vector_base<Point, std::allocator >::_M_allocate (this=0x555556636938, __n=4096)
at /usr/include/c++/8/bits/stl_vector.h:296 #6 0x00005555556f9d9b in std::vector<Point, std::allocator >::_M_realloc_insert<Point const&> (this=0x555556636938, __position=
{x = {0, 6.4766571447683168e-319, 0, 0}})
at /usr/include/c++/8/bits/vector.tcc:427 #7 0x00005555556f619a in std::vector<Point, std::allocator >::push_back
(this=0x555556636938, __x=…) at /usr/include/c++/8/bits/stl_vector.h:1085 #8 0x000055555575a034 in Cube::FillIn (this=0x555556637160,
points=std::vector of length 2048, capacity 2048 = {…}, dx=0.002,
_layers=-4, fill_top=true) at src/geometries/Cube.cc:623 #9 0x0000555555759af1 in Cube::FillIn (this=0x555556637160,
—Type to continue, or q to quit—
points=std::vector of length 2048, capacity 2048 = {…}, dx=0.002,
layers=-4) at src/geometries/Cube.cc:571 #10 0x00005555557abba1 in ProblemAPI<1>::fill_parts (this=0x5555566366e0,
fill=true) at src/problem_api/ProblemAPI_1.cc:1566 #11 0x0000555555706bdf in GPUSPH::initialize (
this=0x55555660be60 GPUSPH::getInstance()::instance,
_gdata=0x7fffffffd6a0) at src/GPUSPH.cc:258 #12 0x00005555556d83c1 in simulate (gdata=0x7fffffffd6a0, repack_or_run=REPACK)
at src/main.cc:365
most likely the only thing that changing the call order achieves is to shift the segfault to a different location, without actually addressing the underlying issue. Given the additional details you provided, it’s possible that this is actually an issue in GPUSPH. However, this forum is not the most appropriate place to discuss these things. Could you please open an issue on GitHub? Please also provide a minimal working testcase that can reproduce the issue on next, if possible. This will make things much easier.