Example code for interfacing with C++ code from Python using pybind11.
Build the pybind11 Python wrapper using the following shell script:
./build_pybind11.sh
Compare the results of a pure Python implementation to that of the pybind11 wrapper using:
./test_pybind11.py
- Pure Python implementation
- fib_python.py
- C++ implementation
- fibonacci.h/.cpp
- pybind11 wrapper
- test_pybind11.py