This repository was archived by the owner on Jun 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
feat: implement ciphertext cache preload upon restart #187
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1688,3 +1688,125 @@ func getThreeFheOperands(sess ExecutorSession, input []byte) (first []byte, seco | |
|
||
return input[0:32], input[32:64], input[64:96], nil | ||
} | ||
|
||
func isBinaryOp(op FheOp) bool { | ||
switch op { | ||
case FheAdd: | ||
return true | ||
case FheBitAnd: | ||
return true | ||
case FheBitOr: | ||
return true | ||
case FheBitXor: | ||
return true | ||
case FheDiv: | ||
return true | ||
case FheEq: | ||
return true | ||
case FheGe: | ||
return true | ||
case FheGt: | ||
return true | ||
case FheLe: | ||
return true | ||
case FheLt: | ||
return true | ||
case FheMax: | ||
return true | ||
case FheMin: | ||
return true | ||
case FheMul: | ||
return true | ||
case FheNe: | ||
return true | ||
case FheRem: | ||
return true | ||
case FheRotl: | ||
return true | ||
case FheRotr: | ||
return true | ||
case FheShl: | ||
return true | ||
case FheShr: | ||
return true | ||
case FheSub: | ||
return true | ||
case FheCast: | ||
return false | ||
case FheNeg: | ||
return false | ||
case FheNot: | ||
return false | ||
case FheRand: | ||
return false | ||
case FheRandBounded: | ||
return false | ||
case FheIfThenElse: | ||
return false | ||
case TrivialEncrypt: | ||
return false | ||
default: | ||
return false | ||
} | ||
} | ||
|
||
func isUnaryOp(op FheOp) bool { | ||
switch op { | ||
case FheNeg: | ||
return true | ||
case FheNot: | ||
return true | ||
case FheAdd: | ||
return false | ||
case FheBitAnd: | ||
return false | ||
case FheBitOr: | ||
return false | ||
case FheBitXor: | ||
return false | ||
case FheDiv: | ||
return false | ||
case FheEq: | ||
return false | ||
case FheGe: | ||
return false | ||
case FheGt: | ||
return false | ||
case FheLe: | ||
return false | ||
case FheLt: | ||
return false | ||
case FheMax: | ||
return false | ||
case FheMin: | ||
return false | ||
case FheMul: | ||
return false | ||
case FheNe: | ||
return false | ||
case FheRem: | ||
return false | ||
case FheRotl: | ||
return false | ||
case FheRotr: | ||
return false | ||
case FheShl: | ||
return false | ||
case FheShr: | ||
return false | ||
case FheSub: | ||
return false | ||
case FheCast: | ||
return false | ||
case FheRand: | ||
return false | ||
case FheRandBounded: | ||
return false | ||
case FheIfThenElse: | ||
return false | ||
case TrivialEncrypt: | ||
return false | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry for nitpicking - but might even drop the false branch and leave it to default :) If we don't have ternary ops we might otherwise just implement binary as !unary, but that's not essential. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I wish it was more like rust, where we would have to list all the cases or its a compile time error, we might forget an operand 🤔 |
||
default: | ||
return false | ||
} | ||
} |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.