Relative Content

Tag Archive for pythonc++multithreadingpybind11

Pybind11 does not hold GIL when run python code

I have an cpp file write with pybind11 extension and then I compile it and import to python as module example
My purpose is to test if I can run cpp concurrently with python without any lock.
Normally, because of GIL when you run multithread python that access the same object, you do not need a lock