norms.h
1 /* Copyright (C) 2012-2020 IBM Corp.
2  * This program is Licensed under the Apache License, Version 2.0
3  * (the "License"); you may not use this file except in compliance
4  * with the License. You may obtain a copy of the License at
5  * http://www.apache.org/licenses/LICENSE-2.0
6  * Unless required by applicable law or agreed to in writing, software
7  * distributed under the License is distributed on an "AS IS" BASIS,
8  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9  * See the License for the specific language governing permissions and
10  * limitations under the License. See accompanying LICENSE file.
11  */
12 #ifndef HELIB_NORMS_H
13 #define HELIB_NORMS_H
14 
17 #include <vector>
18 #include <complex>
19 #include <NTL/ZZX.h>
20 #include <NTL/xdouble.h>
21 //#include <NTL/RR.h>
22 #include <helib/zzX.h>
23 
24 namespace helib {
25 
26 class DoubleCRT;
27 
28 long sumOfCoeffs(const zzX& f); // = f(1)
29 NTL::ZZ sumOfCoeffs(const NTL::ZZX& f); // = f(1)
30 NTL::ZZ sumOfCoeffs(const DoubleCRT& f); // somewhat lame implementation
31 
33 template <typename T>
34 double largestCoeff(const NTL::Vec<T>& f)
35 {
36  double mx = 0;
37  for (auto& x : f) {
38  auto sz = abs(x);
39  if (mx < sz)
40  mx = NTL::conv<double>(sz);
41  }
42  return mx;
43 }
44 template <typename T>
45 double largestCoeff(const std::vector<T>& f)
46 {
47  double mx = 0;
48  for (auto& x : f) {
49  auto sz = abs(x);
50  if (mx < sz)
51  mx = NTL::conv<double>(sz);
52  }
53  return mx;
54 }
55 
56 NTL::ZZ largestCoeff(const NTL::ZZX& f);
57 
58 NTL::ZZ largestCoeff(const NTL::Vec<NTL::ZZ>& f);
59 // somebody eliminated this...please leave it here!
60 
61 NTL::ZZ largestCoeff(const DoubleCRT& f);
62 
64 double coeffsL2NormSquared(const zzX& f); // l2 norm^2
65 NTL::xdouble coeffsL2NormSquared(const NTL::ZZX& f); // l2 norm^2
66 NTL::xdouble coeffsL2NormSquared(const DoubleCRT& f); // l2 norm^2
67 
68 inline double coeffsL2Norm(const zzX& f) // l2 norm
69 {
70  return sqrt(coeffsL2NormSquared(f));
71 }
72 inline NTL::xdouble coeffsL2Norm(const NTL::ZZX& f) // l2 norm
73 {
74  return sqrt(coeffsL2NormSquared(f));
75 }
76 inline NTL::xdouble coeffsL2Norm(const DoubleCRT& f) // l2 norm
77 {
78  return sqrt(coeffsL2NormSquared(f));
79 }
80 
81 typedef std::complex<double> cx_double;
82 
85 double embeddingLargestCoeff(const zzX& f, const PAlgebra& palg);
86 
87 double embeddingLargestCoeff(const std::vector<double>& f,
88  const PAlgebra& palg);
89 
90 // computes two for the price of one
91 void embeddingLargestCoeff_x2(double& norm1,
92  double& norm2,
93  const std::vector<double>& f1,
94  const std::vector<double>& f2,
95  const PAlgebra& palg);
96 
97 NTL::xdouble embeddingLargestCoeff(const NTL::ZZX& f, const PAlgebra& palg);
98 
103 // FIXME: need to to understand and document why te v array
104 // gets initialized in the order that it does...what else
105 // in the library depends on this particular order.
106 void CKKS_canonicalEmbedding(std::vector<cx_double>& v,
107  const zzX& f,
108  const PAlgebra& palg);
109 
110 void CKKS_canonicalEmbedding(std::vector<cx_double>& v,
111  const NTL::ZZX& f,
112  const PAlgebra& palg);
113 
114 void CKKS_canonicalEmbedding(std::vector<cx_double>& v,
115  const std::vector<double>& f,
116  const PAlgebra& palg);
117 
121 void CKKS_embedInSlots(zzX& f,
122  const std::vector<cx_double>& v,
123  const PAlgebra& palg,
124  double scaling);
125 
126 } // namespace helib
127 
128 #endif // ifndef HELIB_NORMS_H
NTL::Vec< long > zzX
Definition: zzX.h:24
Implementing polynomials (elements in the ring R_Q) in double-CRT form.
Definition: DoubleCRT.h:76
long sumOfCoeffs(const zzX &f)
Definition: norms.cpp:42
NTL::xdouble embeddingLargestCoeff(const Ctxt &ctxt, const SecKey &sk)
Definition: debugging.cpp:61
double coeffsL2Norm(const zzX &f)
Definition: norms.h:68
std::complex< double > cx_double
Definition: EncryptedArray.h:32
Definition: apiAttributes.h:21
void CKKS_canonicalEmbedding(std::vector< cx_double > &v, const zzX &f, const PAlgebra &palg)
Definition: norms.cpp:522
double largestCoeff(const NTL::Vec< T > &f)
The L-infinity norm of an element (in coefficient representation)
Definition: norms.h:34
void embeddingLargestCoeff_x2(double &norm1, double &norm2, const std::vector< double > &f1, const std::vector< double > &f2, const PAlgebra &palg)
Definition: norms.cpp:417
void CKKS_embedInSlots(zzX &f, const std::vector< cx_double > &v, const PAlgebra &palg, double scaling)
Definition: norms.cpp:574
double coeffsL2NormSquared(const zzX &f)
The L2-norm of an element (in coefficient representation)
Definition: norms.cpp:92