Implement Glushkov's NFA into cuDF#21936
Draft
lingyany-nv wants to merge 17 commits intorapidsai:mainfrom
Draft
Conversation
…e the quadratic search to O(n); don't allocate working memory when Glushkov is applicable
…tmost-matching; fix the multi_re working memory issue
…but skip as in Glushkov
3712832 to
2eaec3c
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Add bit-parallel Glushkov NFA regex engine with shared memory optimization
Implement Glushkov's NFA for regex string matching in cuDF to be more GPU friendly, references (1) hyperscan paper (2) HybridSA paper (3) vectorscan repo. Basically, this is Glushkov's NFA compared with the other popular Thompson's NFA (also used in current cuDF regex). The Glushkov engine represents NFA state as a single uint64_t bitmask (max 64 positions), requiring zero GPU working memory per thread compared to Thompson NFA's per-thread state arrays. A shared memory cache further accelerates execution by cooperatively loading read-only program data (reach masks, shift masks, exception successors) into SMEM at kernel entry.
Key changes
Limitations
When above condition is detected, it falls back to use the current Thompson's NFA.
Unit tests + benchmark
Checklist