diff --git a/test/nested_cmux.cpp b/test/nested_cmux.cpp index 1d378aa..4699ec2 100644 --- a/test/nested_cmux.cpp +++ b/test/nested_cmux.cpp @@ -49,7 +49,7 @@ int main() SecretKey skey; - alignas(64) std::vector guard; + std::vector,64>> guard; TFHEpp::Polynomial plainpoly = {}; plainpoly[0] = 1; for (size_t i = 0; i < N; i++) @@ -62,7 +62,7 @@ int main() dump_histgram_of_phase_of_TRLWELvl1( std::cout, TFHEpp::trlwePhase(res, skey.key.lvl1)); for (size_t i = 0; i < N; i++) { - TRLWELvl1 tmp = res; + alignas(64) TRLWELvl1 tmp = res; TFHEpp::CMUXFFT(res, guard.at(i), tmp, c0); } dump_histgram_of_phase_of_TRLWELvl1(