RelinearizeOp lowering to transform in CKKS Dialect #2593
+376
−165
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.
This commit reorganizes CKKS lowerings a bit in preparation for a full implementation of CKKS in HEIR.
As a warm up (for me; this is my first PR) I change the RelinearizeOp lowering (CKKS->Polynomial) into a CKKS transform. This required the addition of a few new CKKSOps. KeySwitchInner was raised from Polynomial dialect to the CKKS dialect.
I also introduced a new LWE type: LWERingElt representing an (abstract) ring element. This allows ops to deal with ring elements without worrying about their representation (e.g., as a polynomial or in evaluation form).
Since my next PR will focus on a transformation for KeySwitchInner, I didn't bother fixing up what we had written before; I just deleted it.
As this is my first PR, I strongly encourage nits. Pay special attention to build files, as I have no idea what I'm doing.