You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
std::vector<roaring::Roaring64Map> results = // some process
When I use fastunion (probably incorrectly):
auto sharded_results = new const roaring::Roaring64Map*[results.size()];
for (size_t i = 0; i < results.size(); ++i) {
sharded_results[i] = &results.data()[i];
}
roaring::Roaring64Map combined = roaring::Roaring64Map::fastunion(results.size(), sharded_results);
It takes almost 5 seconds to combine them. However when I just do:
It takes 2.8 seconds. In this case I only have 4 maps, and the combined carnality ends up just above 3 million.
Am I doing something wrong or is this expected?
The text was updated successfully, but these errors were encountered:
It is not the case that the approach you take (two-by-two ORs) is necessarily inferior. More importantly, we don't currently have solid benchmarks for fastunion. That is something that we should add.
I have a std::vector of Roaring64Maps
When I use fastunion (probably incorrectly):
It takes almost 5 seconds to combine them. However when I just do:
It takes 2.8 seconds. In this case I only have 4 maps, and the combined carnality ends up just above 3 million.
Am I doing something wrong or is this expected?
The text was updated successfully, but these errors were encountered: