Finish the pybind11 part

release-the-gil-pt2
Bradlee Speice 2020-06-29 22:48:02 -04:00
parent 5c13a8cf8d
commit 1b24d3d092
1 changed files with 2 additions and 1 deletions

View File

@ -31,6 +31,7 @@ The C++ implementation is very simple:
```c++
#include <cstdint>
#include <pybind11/pybind.h>
inline std::uint64_t fibonacci(std::uint64_t n) {
if (n <= 1) {
@ -77,7 +78,7 @@ those steps here, but the full project is available at [INSERT LINK HERE].
# it's simply to keep the processor busy.
N = 1_000_000_000;
from fibonacci import fibonacci_gil, fibonacci_nogil
from speiceio_pybind11 import fibonacci_gil, fibonacci_nogil
```
We'll first run each function independently: