CRoaring icon indicating copy to clipboard operation
CRoaring copied to clipboard

Roaring bitmaps in C (and C++), with SIMD (AVX2, AVX-512 and NEON) optimizations: used by Apache Doris, ClickHouse, and StarRocks

Results 75 CRoaring issues
Sort by recently updated
recently updated
newest added

We recently started using Roaring64Map in our code to manage a (potentially) large visited set for graph traversal. We replaced an unordered_set and our simplest traversals are twice as fast...

Big-endian platforms are effectively gone. Nevertheless, as a matter of principle, we would like to support them for the IBM mainframe users out there. Currently, if you are on a...

Currently one can perform in-place _or_, _andnot_ and _xor_ operations with a range parameter through the `addRange`, `removeRange` and `flip` methods. Range-based _and_ can be simulated by two consecutive calls...

I have a std::vector of Roaring64Maps std::vector results = // some process When I use fastunion (probably incorrectly): auto sharded_results = new const roaring::Roaring64Map*[results.size()]; for (size_t i = 0; i...

Is there any appetite for being able to provide cardinality in constant time, on both the 32-bit and 64-bit sides? As a customer of the library I feel like I've...

I had a need to calculate the number of bytes of memory used for a given bitmap, so I created a set of functions that will do this, and plumbed...

roaring_bitmap_statistics exists can we get it also for roaring64

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.22.12 to 3.24.9. Changelog Sourced from github/codeql-action's changelog. CodeQL Action Changelog See the releases page for the relevant changes to the CodeQL CLI and language packs. Note...

dependencies

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.0.0 to 4.3.3. Release notes Sourced from actions/upload-artifact's releases. v4.3.3 What's Changed updating @actions/artifact dependency to v2.1.6 by @​eggyhead in actions/upload-artifact#565 Full Changelog: https://github.com/actions/upload-artifact/compare/v4.3.2...v4.3.3 v4.3.2 What's Changed...

dependencies