Skip to content

Commit

Permalink
Fixed error
Browse files Browse the repository at this point in the history
  • Loading branch information
Neha J committed May 29, 2024
1 parent 8d7f83c commit 052fa09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GPU-MPC/backend/sigma.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ class SIGMA : public Backend<T>
std::vector<GroupElement> *invSqrtTab;
LlamaTransformer<T> *llama;

SIGMA(int party, std::string ip, std::string keyFile, int bw, int scale, int n_seq, int n_embed, int numThreads, bool initGPUMemPool = true) : party(party), bw(bw), scale(scale), n_seq(n_seq)
SIGMA(int party, std::string ip, std::string keyFile, int bw, int scale, int n_seq, int n_embed, int numThreads, bool gpuMemPool = true) : party(party), bw(bw), scale(scale), n_seq(n_seq)
{
initAESContext(&g);
if (initGPUMemPool)
if (gpuMemPool)
initGPUMemPool();
// initCommBufs(true);

Expand Down

0 comments on commit 052fa09

Please sign in to comment.