blob: 538f8dcc24f0710f9882d2dc77ce80b6eee09449 [file] [log] [blame]
Wenzel Jakobde623a72016-03-09 21:11:19 +01001Frequently asked questions
2##########################
3
Wenzel Jakobc62360d2016-05-03 14:32:47 +02004"ImportError: dynamic module does not define init function"
5===========================================================
Wenzel Jakob50ed3612016-04-11 17:38:25 +02006
71. Make sure that the name specified in ``pybind::module`` and
8 ``PYBIND11_PLUGIN`` is consistent and identical to the filename of the
9 extension library. The latter should not contain any extra prefixes (e.g.
10 ``test.so`` instead of ``libtest.so``).
11
122. If the above did not fix your issue, then you are likely using an
13 incompatible version of Python (for instance, the extension library was
14 compiled against Python 2, while the interpreter is running on top of some
Wenzel Jakobc62360d2016-05-03 14:32:47 +020015 version of Python 3, or vice versa)
16
17"Symbol not found: ``__Py_ZeroStruct`` / ``_PyInstanceMethod_Type``"
18========================================================================
19
20See item 2 of the first answer.
21
Wenzel Jakob70f5a4d2016-09-05 17:19:18 +090022"SystemError: dynamic module not initialized properly"
23======================================================
24
25See item 2 of the first answer.
26
Wenzel Jakobc62360d2016-05-03 14:32:47 +020027The Python interpreter immediately crashes when importing my module
28===================================================================
29
30See item 2 of the first answer.
Wenzel Jakob50ed3612016-04-11 17:38:25 +020031
Wenzel Jakobf600c1d2016-06-03 14:47:54 +020032CMake doesn't detect the right Python version
33=============================================
Wenzel Jakoba439cca2016-05-17 10:47:52 +020034
Wenzel Jakobf600c1d2016-06-03 14:47:54 +020035The CMake-based build system will try to automatically detect the installed
36version of Python and link against that. When this fails, or when there are
37multiple versions of Python and it finds the wrong one, delete
38``CMakeCache.txt`` and then invoke CMake as follows:
Wenzel Jakoba439cca2016-05-17 10:47:52 +020039
40.. code-block:: bash
41
Wenzel Jakobf600c1d2016-06-03 14:47:54 +020042 cmake -DPYTHON_EXECUTABLE:FILEPATH=<path-to-python-executable> .
Wenzel Jakoba439cca2016-05-17 10:47:52 +020043
Wenzel Jakobde623a72016-03-09 21:11:19 +010044Limitations involving reference arguments
45=========================================
46
47In C++, it's fairly common to pass arguments using mutable references or
48mutable pointers, which allows both read and write access to the value
49supplied by the caller. This is sometimes done for efficiency reasons, or to
50realize functions that have multiple return values. Here are two very basic
51examples:
52
53.. code-block:: cpp
54
55 void increment(int &i) { i++; }
56 void increment_ptr(int *i) { (*i)++; }
57
58In Python, all arguments are passed by reference, so there is no general
59issue in binding such code from Python.
60
61However, certain basic Python types (like ``str``, ``int``, ``bool``,
62``float``, etc.) are **immutable**. This means that the following attempt
63to port the function to Python doesn't have the same effect on the value
64provided by the caller -- in fact, it does nothing at all.
65
66.. code-block:: python
67
68 def increment(i):
69 i += 1 # nope..
70
Wenzel Jakob4a48afb2016-03-09 21:31:21 +010071pybind11 is also affected by such language-level conventions, which means that
72binding ``increment`` or ``increment_ptr`` will also create Python functions
73that don't modify their arguments.
Wenzel Jakobde623a72016-03-09 21:11:19 +010074
Wenzel Jakob4a48afb2016-03-09 21:31:21 +010075Although inconvenient, one workaround is to encapsulate the immutable types in
Wenzel Jakob2e03a582016-04-14 11:27:15 +020076a custom type that does allow modifications.
Wenzel Jakob4a48afb2016-03-09 21:31:21 +010077
78An other alternative involves binding a small wrapper lambda function that
79returns a tuple with all output arguments (see the remainder of the
80documentation for examples on binding lambda functions). An example:
81
82.. code-block:: cpp
83
84 int foo(int &i) { i++; return 123; }
85
86and the binding code
87
88.. code-block:: cpp
89
90 m.def("foo", [](int i) { int rv = foo(i); return std::make_tuple(rv, i); });
91
Wenzel Jakob2e03a582016-04-14 11:27:15 +020092
Wenzel Jakobc79dbe42016-04-17 21:54:31 +020093How can I reduce the build time?
94================================
95
96It's good practice to split binding code over multiple files, as is done in
97the included file :file:`example/example.cpp`.
98
99.. code-block:: cpp
100
101 void init_ex1(py::module &);
102 void init_ex2(py::module &);
103 /* ... */
104
105 PYBIND11_PLUGIN(example) {
106 py::module m("example", "pybind example plugin");
107
108 init_ex1(m);
109 init_ex2(m);
110
111 /* ... */
112
113 return m.ptr();
114 }
115
Wenzel Jakobf64feaf2016-04-28 14:33:45 +0200116The various ``init_ex`` functions should be contained in separate files that
117can be compiled independently from another. Following this approach will
Wenzel Jakobc79dbe42016-04-17 21:54:31 +0200118
Wenzel Jakobf64feaf2016-04-28 14:33:45 +02001191. reduce memory requirements per compilation unit.
Wenzel Jakobc79dbe42016-04-17 21:54:31 +0200120
Wenzel Jakobf64feaf2016-04-28 14:33:45 +02001212. enable parallel builds (if desired).
Wenzel Jakobc79dbe42016-04-17 21:54:31 +0200122
Wenzel Jakobf64feaf2016-04-28 14:33:45 +02001233. allow for faster incremental builds. For instance, when a single class
Jason Rhinelander20ef6262016-09-21 13:39:02 -0400124 definition is changed, only a subset of the binding code will generally need
Wenzel Jakobf64feaf2016-04-28 14:33:45 +0200125 to be recompiled.
Wenzel Jakobc79dbe42016-04-17 21:54:31 +0200126
127How can I create smaller binaries?
128==================================
129
130To do its job, pybind11 extensively relies on a programming technique known as
131*template metaprogramming*, which is a way of performing computation at compile
132time using type information. Template metaprogamming usually instantiates code
133involving significant numbers of deeply nested types that are either completely
Jason Rhinelander20ef6262016-09-21 13:39:02 -0400134removed or reduced to just a few instructions during the compiler's optimization
Wenzel Jakobc79dbe42016-04-17 21:54:31 +0200135phase. However, due to the nested nature of these types, the resulting symbol
136names in the compiled extension library can be extremely long. For instance,
137the included test suite contains the following symbol:
138
Wenzel Jakobf64feaf2016-04-28 14:33:45 +0200139.. only:: html
Wenzel Jakobc79dbe42016-04-17 21:54:31 +0200140
Wenzel Jakobf64feaf2016-04-28 14:33:45 +0200141 .. code-block:: none
142
Wenzel Jakobfe342412016-09-06 13:02:29 +0900143 __ZN8pybind1112cpp_functionC1Iv8Example2JRNSt3__16vectorINS3_12basic_stringIwNS3_11char_traitsIwEENS3_9allocatorIwEEEENS8_ISA_EEEEEJNS_4nameENS_7siblingENS_9is_methodEA28_cEEEMT0_FT_DpT1_EDpRKT2_
Wenzel Jakobf64feaf2016-04-28 14:33:45 +0200144
145.. only:: not html
146
147 .. code-block:: cpp
148
149 __ZN8pybind1112cpp_functionC1Iv8Example2JRNSt3__16vectorINS3_12basic_stringIwNS3_11char_traitsIwEENS3_9allocatorIwEEEENS8_ISA_EEEEEJNS_4nameENS_7siblingENS_9is_methodEA28_cEEEMT0_FT_DpT1_EDpRKT2_
Wenzel Jakobc79dbe42016-04-17 21:54:31 +0200150
151which is the mangled form of the following function type:
152
153.. code-block:: cpp
154
155 pybind11::cpp_function::cpp_function<void, Example2, std::__1::vector<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, std::__1::allocator<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> > > >&, pybind11::name, pybind11::sibling, pybind11::is_method, char [28]>(void (Example2::*)(std::__1::vector<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, std::__1::allocator<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> > > >&), pybind11::name const&, pybind11::sibling const&, pybind11::is_method const&, char const (&) [28])
156
Wenzel Jakobf64feaf2016-04-28 14:33:45 +0200157The memory needed to store just the mangled name of this function (196 bytes)
158is larger than the actual piece of code (111 bytes) it represents! On the other
159hand, it's silly to even give this function a name -- after all, it's just a
160tiny cog in a bigger piece of machinery that is not exposed to the outside
161world. So we'll generally only want to export symbols for those functions which
162are actually called from the outside.
Wenzel Jakobc79dbe42016-04-17 21:54:31 +0200163
164This can be achieved by specifying the parameter ``-fvisibility=hidden`` to GCC
165and Clang, which sets the default symbol visibility to *hidden*. It's best to
166do this only for release builds, since the symbol names can be helpful in
167debugging sessions. On Visual Studio, symbols are already hidden by default, so
168nothing needs to be done there. Needless to say, this has a tremendous impact
169on the final binary size of the resulting extension library.
170
171Another aspect that can require a fair bit of code are function signature
172descriptions. pybind11 automatically generates human-readable function
173signatures for docstrings, e.g.:
174
175.. code-block:: none
176
177 | __init__(...)
178 | __init__(*args, **kwargs)
179 | Overloaded function.
180 |
181 | 1. __init__(example.Example1) -> NoneType
182 |
183 | Docstring for overload #1 goes here
184 |
185 | 2. __init__(example.Example1, int) -> NoneType
186 |
187 | Docstring for overload #2 goes here
188 |
189 | 3. __init__(example.Example1, example.Example1) -> NoneType
190 |
191 | Docstring for overload #3 goes here
192
193
194In C++11 mode, these are generated at run time using string concatenation,
195which can amount to 10-20% of the size of the resulting binary. If you can,
196enable C++14 language features (using ``-std=c++14`` for GCC/Clang), in which
197case signatures are efficiently pre-generated at compile time. Unfortunately,
198Visual Studio's C++14 support (``constexpr``) is not good enough as of April
1992016, so it always uses the more expensive run-time approach.
Wenzel Jakobc62360d2016-05-03 14:32:47 +0200200
201Working with ancient Visual Studio 2009 builds on Windows
202=========================================================
203
204The official Windows distributions of Python are compiled using truly
205ancient versions of Visual Studio that lack good C++11 support. Some users
206implicitly assume that it would be impossible to load a plugin built with
207Visual Studio 2015 into a Python distribution that was compiled using Visual
208Studio 2009. However, no such issue exists: it's perfectly legitimate to
209interface DLLs that are built with different compilers and/or C libraries.
210Common gotchas to watch out for involve not ``free()``-ing memory region
211that that were ``malloc()``-ed in another shared library, using data
212structures with incompatible ABIs, and so on. pybind11 is very careful not
213to make these types of mistakes.