Mike Sardonini
Results
1
comments of
Mike Sardonini
I also have this problem. Here is a quick way to reproduce it. ```c++ #include #include "pybind11/embed.h" namespace py = pybind11; void test_func() { py::gil_scoped_acquire acquire; auto module = py::module_::import("numpy");...