Intel® C++ Compiler
Community support and assistance for creating C++ code that runs on platforms based on Intel® processors.
7957 Discussions

boost-python shared object with openmp segfaults

Cihan
Beginner
613 Views

We have a large open source software project that uses OpenMP and consists of a few libraries and python wrappers for those built using boost::python. Up until intel composer XE 12 everything was working fine but both with 13.1 and 13.5 we get a segmentation fault for a particular use-case. I was able to reproduce with a small example (see attachment). Note that the code example does not use OpenMP at all but compiling with the -openmp flag causes a segmentation fault, while leaving the flag off works as expected.
A valgrind run reveals that the crash is due to an invalid address within boost::throw_exception<bad_weak_ptr>.

To compile/link the example:

[bash]icpc -o testme.so -openmp -lpython2.7 -lboost_python -shared -fPIC testme.cpp[/bash]

and then to use:

[bash]python -c "import testme; testme.printone()"[/bash]

Has anyone seen this behaviour elsewhere? Is this a coding error or an issue with the compiler? Note that using gcc works.

Many thanks!

0 Kudos
2 Replies
SergeyKostrov
Valued Contributor II
613 Views
What version of Boost library are you using? Please specify and thanks.
0 Kudos
Cihan
Beginner
613 Views

Sergey Kostrov wrote:

What version of Boost library are you using? Please specify and thanks.

We use boost 1.51.0, python 2.7.3 (both compiled with gcc).
Environment is SLES 11 x86_64 running on Intel Xeon E5462.

0 Kudos
Reply