Skip to content

Commit

Permalink
Adding id msg
Browse files Browse the repository at this point in the history
  • Loading branch information
joserochh committed May 18, 2022
1 parent 9c3ced1 commit fbe0c32
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hexl/ntt/ntt-internal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

#include <cstring>
#include <utility>
#include <iostream>

#include "hexl/logging/logging.hpp"
#include "hexl/ntt/ntt.hpp"
Expand Down Expand Up @@ -198,7 +199,7 @@ void NTT::ComputeForward(uint64_t* result, const uint64_t* operand,
HEXL_CHECK_BOUNDS(
operand, m_degree, m_q * input_mod_factor,
"value in operand exceeds bound " << m_q * input_mod_factor);

std::cout << "This is running my version of the HEXL" << std::endl;
#ifdef HEXL_HAS_AVX512IFMA
if (has_avx512ifma && (m_q < s_max_fwd_ifma_modulus && (m_degree >= 16))) {
const uint64_t* root_of_unity_powers = GetAVX512RootOfUnityPowers().data();
Expand Down

0 comments on commit fbe0c32

Please sign in to comment.