-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add region-overlap expression decoding from base64.
This is directly targeted at a daf_butler use case, where we concatenate base64-encoded regions with an aggregate function to represent an expression of the form: (a OVERLAPS b) OR (c OVERLAPS d) OR (e OVERLAPS f) Moving the base64 decoding to C++ here lets us also move the split on the concatenation delimiter and (most importantly) individual region construction) to C++, avoiding a lot of expensive Python object instantiations and pybind11 type wrangling.
- Loading branch information
Showing
4 changed files
with
74 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters