52 lines
2.1 KiB
C
52 lines
2.1 KiB
C
![]() |
// ----------------------------------------------------------------------------
|
||
|
// - Open3D: www.open3d.org -
|
||
|
// ----------------------------------------------------------------------------
|
||
|
// Copyright (c) 2018-2023 www.open3d.org
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
// ----------------------------------------------------------------------------
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <tbb/parallel_for.h>
|
||
|
|
||
|
namespace open3d {
|
||
|
namespace ml {
|
||
|
namespace impl {
|
||
|
|
||
|
/// Reduces subarrays in linear memory with the sum operation.
|
||
|
/// The sum for empty subarrays is 0.
|
||
|
///
|
||
|
/// \param values The linear array with all values
|
||
|
/// \param values_size Number of elements of \p values
|
||
|
/// \param row_splits Defines the start and end of each subarray. This is
|
||
|
/// an exclusive prefix sum with 0 as the first element
|
||
|
/// and the length of \p values as last element.
|
||
|
/// The size is \p num_arrays + 1
|
||
|
/// \param num_arrays The number of subarrays
|
||
|
/// \param out_sums The preallocated output array with size
|
||
|
/// \p num_arrays
|
||
|
template <class T>
|
||
|
void ReduceSubarraysSumCPU(const T* const values,
|
||
|
const size_t values_size,
|
||
|
const int64_t* const row_splits,
|
||
|
const size_t num_arrays,
|
||
|
T* out_sums) {
|
||
|
tbb::parallel_for(tbb::blocked_range<size_t>(0, num_arrays),
|
||
|
[&](const tbb::blocked_range<size_t>& r) {
|
||
|
for (size_t i = r.begin(); i != r.end(); ++i) {
|
||
|
size_t begin_idx = row_splits[i];
|
||
|
size_t end_idx = row_splits[i + 1];
|
||
|
|
||
|
T sum = T(0);
|
||
|
for (size_t j = begin_idx; j < end_idx; ++j) {
|
||
|
sum += values[j];
|
||
|
}
|
||
|
out_sums[i] = sum;
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
} // namespace impl
|
||
|
} // namespace ml
|
||
|
} // namespace open3d
|