From ae08a3c8f4274b7490554c73f29eaca133e573a5 Mon Sep 17 00:00:00 2001 From: anakinxc <103552181+anakinxc@users.noreply.github.com> Date: Wed, 22 Nov 2023 14:03:22 +0000 Subject: [PATCH] Fix format --- psi/psi/core/ecdh_oprf_psi.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/psi/psi/core/ecdh_oprf_psi.cc b/psi/psi/core/ecdh_oprf_psi.cc index 3aed7ef..df7b563 100644 --- a/psi/psi/core/ecdh_oprf_psi.cc +++ b/psi/psi/core/ecdh_oprf_psi.cc @@ -107,10 +107,10 @@ size_t EcdhOprfPsiServer::FullEvaluate( SPDLOG_INFO("omp_get_num_threads:{} cpus:{}", nthreads, mcpus); omp_set_num_threads(mcpus); -#pragma omp parallel private(tid, nthreads, i, batch_items, batch_indices, \ - shuffle_indices, batch, local_batch_count) \ - shared(lck_read, lck_send, batch_count, items_count, compare_length, \ - stop_flag) +#pragma omp parallel private(tid, nthreads, i, batch_items, batch_indices, \ + shuffle_indices, batch, local_batch_count) \ + shared(lck_read, lck_send, batch_count, items_count, compare_length, \ + stop_flag) { tid = omp_get_thread_num(); if ((tid == 0) && (batch_count == 0)) {