forked from cmuparlay/parlaylib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflatten.h
24 lines (22 loc) · 898 Bytes
/
flatten.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <parlay/parallel.h>
#include <parlay/primitives.h>
#include <parlay/sequence.h>
#include <parlay/utilities.h>
// **************************************************************
// An implementation of flatten.
// Takes a nested sequence and flattens into a flat sequences.
// Basically as implemented in the library.
// **************************************************************
template <typename Range>
auto flatten(const Range& A) {
using T = typename Range::value_type::value_type;
auto sizes = parlay::delayed_map(A, parlay::size_of{});
auto [offsets, m] = parlay::scan(sizes);
auto r = parlay::sequence<T>::uninitialized(m);
parlay::parallel_for(0, A.size(), [&, &offsets = offsets] (long i) {
auto start = offsets[i];
parlay::parallel_for(0, A[i].size(), [&] (long j) {
parlay::assign_uninitialized(r[start+j], A[i][j]);
}, 1000); });
return r;
}