Matthias Hochsteger 163135981e Fix GIL issues in GenerateMesh() functions
Functions with a python typed argument (kwargs in this case) cannot use
  py::call_guard<py::gil_scoped_release>()
because it means, the GIL is not held when the function returns (and
cleans up arguments/temporary variables).

Thus, remove the global call guard and create a local variable
  py::gil_scoped_release gil_release;
after arguments are processed and before meshing starts.

This local variable is destroyed before the function returns
(acquiring the GIL again).
2024-06-21 11:36:37 +02:00
..
2019-07-09 10:39:16 +02:00
2009-01-12 23:40:13 +00:00
2017-02-27 11:35:56 +01:00
2022-12-08 15:26:27 +01:00
2023-07-25 19:45:16 +02:00
2018-02-26 14:08:22 +01:00
2009-01-12 23:40:13 +00:00
2022-03-25 18:22:05 -04:00
2022-03-25 18:22:05 -04:00
2019-07-09 10:39:16 +02:00
2009-01-12 23:40:13 +00:00
2022-03-25 18:22:05 -04:00
2021-04-17 16:27:30 +02:00
2009-01-24 23:28:47 +00:00
2009-09-07 11:50:13 +00:00
2009-01-12 23:40:13 +00:00
2022-03-25 18:22:05 -04:00
2009-01-12 23:40:13 +00:00
2022-09-08 11:08:25 -04:00
2023-08-05 12:01:01 +02:00
2020-10-16 09:44:11 +02:00
2022-03-25 18:22:05 -04:00
2020-10-17 17:08:58 +02:00
2022-09-08 11:08:25 -04:00
2022-03-25 18:22:05 -04:00
2009-01-12 23:40:13 +00:00
2019-07-09 10:39:16 +02:00
2019-07-09 10:39:16 +02:00
2020-10-17 17:08:58 +02:00
2019-08-28 14:04:05 +02:00
2019-07-09 10:39:16 +02:00
2023-08-05 12:01:01 +02:00
2019-08-28 14:04:05 +02:00