From 0fa194df3dba739d8c78d33c8ced6c0ee1f6d5eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iago=20Su=C3=A1rez?= Date: Mon, 19 Feb 2024 00:47:40 +0100 Subject: [PATCH] Removing parallel behaviour --- src/PYAPI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PYAPI.cpp b/src/PYAPI.cpp index c3aadf4..2aaa533 100644 --- a/src/PYAPI.cpp +++ b/src/PYAPI.cpp @@ -144,7 +144,7 @@ py::list batched_run_lsd(const py::array_t& img, segments.append(py::array_t({1, 5})); } - #pragma omp parallel for + // #pragma omp parallel for for (int b = 0 ; b < batch_size ; b++){ // LSD call. Returns [x1,y1,x2,y2,width,p,-log10(NFA)] for each segment int N;