-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add PlainMatrix
and SecureMatrix
#27
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
|
Unfortunately, the concept used in the previous commits is not useful, because of the extremely bad efficiency. I tried to build a secure matrix simply combining many secure vectors as rows of the matrix, but e.g. for 40 * 40 Matrix it's necessary to use 40 |
Thanks, very interesting findings. Please make sure that you record your measurements such that we can use them in a publication or talk. |
It might be worthwhile to search the Discourse for terms related to matrix: https://openfhe.discourse.group/search?q=matrix The first few results seem interesting, but also indicate that it might be a non-trivial goal to achieve (at least if trying to do it efficiently). |
Thanks for the idea! I will record all results! |
Is this still relevant? I lost track whether this is already implemented in SA.jl or not... |
I was wondering about 2D simulations and thought, that it should not be so difficult to add
PlainMatrix
andSecureMatrix
based on currently existingPlainVector
andSecureVector
, this is my try.I pinned
OpenFHE_jll
to v1.1.2 to let tests run.