Skip to content
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

[CHEETAH] Optimize the MulAA communication. #850

Merged
merged 1 commit into from
Sep 18, 2024

Commits on Sep 11, 2024

  1. [CHEETAH] Optimize the MulAA communication.

    Previous impl realizes the MulAA via two OLEs for computing two terms x0*y1 and x1*y0.
    This will introduce a larger communication overhead.
    
    We switch to another strategy by computing the sum x0*y1+x1*y0 homomorphically.
    To further utilize the CPU resources, we split a long vector into two
    subtasks and to let Rank0 and Rank1 to handle each half.
    fionser committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    cceccf5 View commit details
    Browse the repository at this point in the history