Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
hobu committed Jan 4, 2024
1 parent 6bcdde9 commit 86ee4e2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pdal/libpdalpython.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,12 @@ namespace pdal {
}

point_count_t executeStream(point_count_t streamLimit) {
return getExecutor()->executeStream(streamLimit);
point_count_t response(0);
{
py::gil_scoped_release release;
response = getExecutor()->executeStream(streamLimit);
}
return response;
}

std::unique_ptr<PipelineIterator> iterator(int chunk_size, int prefetch) {
Expand Down

0 comments on commit 86ee4e2

Please sign in to comment.