Skip to content

Commit

Permalink
fixing CI
Browse files Browse the repository at this point in the history
  • Loading branch information
nindanaoto committed Jul 15, 2024
1 parent d5c7f63 commit c8a57a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/nested_cmux.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ int main()

SecretKey skey;

alignas(64) std::vector<TRGSWLvl1FFT> guard;
std::vector<TRGSWLvl1FFT,TFHEpp::AlignedAllocator<TFHEpp::TRGSWFFT<TFHEpp::lvl1param>,64>> guard;
TFHEpp::Polynomial<TFHEpp::lvl1param> plainpoly = {};
plainpoly[0] = 1;
for (size_t i = 0; i < N; i++)
Expand All @@ -62,7 +62,7 @@ int main()
dump_histgram_of_phase_of_TRLWELvl1(
std::cout, TFHEpp::trlwePhase<TFHEpp::lvl1param>(res, skey.key.lvl1));
for (size_t i = 0; i < N; i++) {
TRLWELvl1 tmp = res;
alignas(64) TRLWELvl1 tmp = res;
TFHEpp::CMUXFFT<Lvl1>(res, guard.at(i), tmp, c0);
}
dump_histgram_of_phase_of_TRLWELvl1(
Expand Down

0 comments on commit c8a57a9

Please sign in to comment.