CModulus.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_CMODULUS_H
13 #define HELIB_CMODULUS_H
14 
20 #include <helib/NumbTh.h>
21 #include <helib/PAlgebra.h>
22 #include <helib/bluestein.h>
23 #include <helib/clonedPtr.h>
24 
25 namespace helib {
26 
42 class Cmodulus
43 {
45  long q;
47  NTL::mulmod_t qinv;
48 
50  NTL::zz_pContext context;
51 
53  const PAlgebra* zMStar;
54 
56  long m_inv;
57 
59  long root;
61  long rInv;
62 
63  // tables for forward FFT
64  copied_ptr<NTL::zz_pX> powers;
65  NTL::Vec<NTL::mulmod_precon_t> powers_aux;
66  copied_ptr<NTL::fftRep> Rb;
67 
68  // tables for backward FFT
69  copied_ptr<NTL::zz_pX> ipowers;
70  NTL::Vec<NTL::mulmod_precon_t> ipowers_aux;
71  copied_ptr<NTL::fftRep> iRb;
72 
73  // PhimX modulo q, for faster division w/ remainder
74  copied_ptr<zz_pXModulus1> phimx;
75 
76  // Allocate memory and compute roots
77  void privateInit(const PAlgebra&, long rt);
78 
79 public:
80 #ifdef HELIB_OPENCL
81  SmartPtr<AltFFTPrimeInfo> altFFTInfo;
82  // We need to allow copying...the underlying object
83  // is immutable
84 #endif
85 
86  // Destructor and constructors
87 
89  Cmodulus() {}
90 
91  Cmodulus(const Cmodulus& other) { *this = other; }
92 
98  Cmodulus(const PAlgebra& zms, long qq, long rt);
99 
101  Cmodulus& operator=(const Cmodulus& other);
102 
103  // utility methods
104 
105  const PAlgebra& getZMStar() const { return *zMStar; }
106  unsigned long getM() const { return zMStar->getM(); }
107  unsigned long getPhiM() const { return zMStar->getPhiM(); }
108  long getQ() const { return q; }
109  NTL::mulmod_t getQInv() const { return qinv; }
110  long getRoot() const { return root; }
111  const zz_pXModulus1& getPhimX() const { return *phimx; }
112 
114  void restoreModulus() const { context.restore(); }
115 
116  // FFT routines
117 
118  // sets zp context internally
119  // y = FFT(x)
120  void FFT(NTL::vec_long& y, const NTL::ZZX& x) const;
121  // y = FFT(x)
122  void FFT(NTL::vec_long& y, const zzX& x) const;
123 
124  // auxiliary routine used by above two routines
125  void FFT_aux(NTL::vec_long& y, NTL::zz_pX& tmp) const;
126 
127  // expects zp context to be set externally
128  // x = FFT^{-1}(y)
129  void iFFT(NTL::zz_pX& x, const NTL::vec_long& y) const;
130 
131  // returns thread-local scratch space
132  // DIRT: this zz_pX is used for several zz_p moduli,
133  // which is not officially sanctioned by NTL, but should be OK.
134  static NTL::zz_pX& getScratch_zz_pX();
135 
136  static NTL::Vec<long>& getScratch_vec_long();
137 
138  // returns thread-local scratch space
139  // DIRT: this use a couple of internal, undocumented
140  // NTL interfaces
141  static NTL::fftRep& getScratch_fftRep(long k);
142 };
143 
144 } // namespace helib
145 
146 #endif // ifndef HELIB_CMODULUS_H
long getM() const
Returns m.
Definition: PAlgebra.h:162
NTL::Vec< long > zzX
Definition: zzX.h:24
void FFT_aux(NTL::vec_long &y, NTL::zz_pX &tmp) const
Definition: CModulus.cpp:345
void iFFT(NTL::zz_pX &x, const NTL::vec_long &y) const
Definition: CModulus.cpp:450
Cmodulus(const Cmodulus &other)
Definition: CModulus.h:91
void restoreModulus() const
Restore NTL's current modulus.
Definition: CModulus.h:114
static NTL::fftRep & getScratch_fftRep(long k)
Definition: CModulus.cpp:540
The structure of (Z/mZ)* /(p)
Definition: PAlgebra.h:77
const zz_pXModulus1 & getPhimX() const
Definition: CModulus.h:111
static NTL::Vec< long > & getScratch_vec_long()
Definition: CModulus.cpp:534
Provides FFT and iFFT routines modulo a single-precision prime.
Definition: CModulus.h:43
Auxiliary classes to facilitate faster reduction mod Phi_m(X) when the input has degree less than m.
Definition: NumbTh.h:799
Definition: apiAttributes.h:21
long getQ() const
Definition: CModulus.h:108
Cmodulus()
Default constructor.
Definition: CModulus.h:89
unsigned long getPhiM() const
Definition: CModulus.h:107
void FFT(NTL::vec_long &y, const NTL::ZZX &x) const
Definition: CModulus.cpp:418
long getPhiM() const
Returns phi(m)
Definition: PAlgebra.h:168
NTL::mulmod_t getQInv() const
Definition: CModulus.h:109
const PAlgebra & getZMStar() const
Definition: CModulus.h:105
Cmodulus & operator=(const Cmodulus &other)
Copy assignment operator.
Definition: CModulus.cpp:168
unsigned long getM() const
Definition: CModulus.h:106
long getRoot() const
Definition: CModulus.h:110
static NTL::zz_pX & getScratch_zz_pX()
Definition: CModulus.cpp:528