From f3af3035cff859572d5b41c97c1d18541ce81f87 Mon Sep 17 00:00:00 2001 From: Nils Vu Date: Fri, 30 Aug 2024 01:21:36 -0700 Subject: [PATCH] Fix race condition in exporter --- src/IO/Exporter/Exporter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/IO/Exporter/Exporter.cpp b/src/IO/Exporter/Exporter.cpp index 794f670312b4..b3cc0498ec1c 100644 --- a/src/IO/Exporter/Exporter.cpp +++ b/src/IO/Exporter/Exporter.cpp @@ -421,7 +421,7 @@ std::vector> interpolate_to_points( std::vector> extra_block_logical_coords{}; std::vector> extra_extrapolation_info{}; -#pragma omp for nowait +#pragma omp for for (size_t s = 0; s < num_target_points; ++s) { for (size_t d = 0; d < Dim; ++d) { target_point.get(d) = gsl::at(target_points, d)[s];