randomMatrices.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_RANDOMMATRICES_H
13 #define HELIB_RANDOMMATRICES_H
14 
18 #include <helib/matmul.h>
19 #include <NTL/BasicThreadPool.h>
20 
21 namespace helib {
22 
23 template <typename type>
24 class RandomMatrix : public MatMul1D_derived<type>
25 {
26 public:
27  PA_INJECT(type)
28 
29 private:
30  std::vector<std::vector<RX>> data;
31  const EncryptedArray& ea;
32  long dim;
33 
34 public:
35  virtual ~RandomMatrix() {}
36  RandomMatrix(const EncryptedArray& _ea, long _dim) : ea(_ea), dim(_dim)
37  {
38  RBak bak;
39  bak.save();
40  ea.getAlMod().restoreContext();
41  long d = ea.getDegree();
42  long D = ea.sizeOfDimension(dim);
43 
44  NTL::RandomStreamPush push;
45  NTL::SetSeed(NTL::ZZ(123));
46 
47  data.resize(D);
48  for (long i = 0; i < D; i++) {
49  data[i].resize(D);
50  for (long j = 0; j < D; j++) {
51  random(data[i][j], d);
52  }
53  }
54  }
55 
56  const EncryptedArray& getEA() const override { return ea; }
57  bool multipleTransforms() const override { return false; }
58  long getDim() const override { return dim; }
59 
60  bool get(RX& out, long i, long j, UNUSED long k) const override
61  {
62  long D = ea.sizeOfDimension(dim);
63 
64  assertInRange(i, 0l, D, "Matrix index out of range");
65  assertInRange(j, 0l, D, "Matrix index out of range");
66  if (IsZero(data[i][j]))
67  return true;
68  out = data[i][j];
69  return false;
70  }
71 };
72 
73 MatMul1D* buildRandomMatrix(const EncryptedArray& ea, long dim);
74 
75 template <typename type>
76 class RandomMultiMatrix : public MatMul1D_derived<type>
77 {
78 public:
79  PA_INJECT(type)
80 
81 private:
82  std::vector<std::vector<std::vector<RX>>> data;
83  const EncryptedArray& ea;
84  long dim;
85 
86 public:
87  virtual ~RandomMultiMatrix() {}
88  RandomMultiMatrix(const EncryptedArray& _ea, long _dim) : ea(_ea), dim(_dim)
89  {
90  RBak bak;
91  bak.save();
92  ea.getAlMod().restoreContext();
93  long n = ea.size();
94  long d = ea.getDegree();
95  long D = ea.sizeOfDimension(dim);
96 
97  NTL::RandomStreamPush push;
98  SetSeed(NTL::ZZ(123));
99 
100  data.resize(n / D);
101  for (long k = 0; k < n / D; k++) {
102  data[k].resize(D);
103  for (long i = 0; i < D; i++) {
104  data[k][i].resize(D);
105  for (long j = 0; j < D; j++) {
106  random(data[k][i][j], d);
107  }
108  }
109  }
110  }
111 
112  const EncryptedArray& getEA() const override { return ea; }
113  bool multipleTransforms() const override { return true; }
114  long getDim() const override { return dim; }
115 
116  bool get(RX& out, long i, long j, long k) const override
117  {
118  long n = ea.size();
119  long D = ea.sizeOfDimension(dim);
120 
121  assertInRange(i, 0l, D, "Matrix index out of range");
122  assertInRange(j, 0l, D, "Matrix index out of range");
123  assertInRange(k, 0l, n / D, "Matrix index out of range");
124  if (IsZero(data[k][i][j]))
125  return true;
126  out = data[k][i][j];
127  return false;
128  }
129 };
130 
131 MatMul1D* buildRandomMultiMatrix(const EncryptedArray& ea, long dim);
132 
133 //********************************
134 
135 template <typename type>
137 {
138  PA_INJECT(type)
139 
140  const EncryptedArray& ea;
141  long dim;
142 
143  std::vector<std::vector<mat_R>> data;
144 
145 public:
146  RandomBlockMatrix(const EncryptedArray& _ea, long _dim) : ea(_ea), dim(_dim)
147  {
148  RBak bak;
149  bak.save();
150  _ea.getAlMod().restoreContext();
151  long d = _ea.getDegree();
152  long D = _ea.sizeOfDimension(dim);
153 
154  NTL::RandomStreamPush push;
155  SetSeed(NTL::ZZ(123));
156 
157  data.resize(D);
158  for (long i = 0; i < D; i++) {
159  data[i].resize(D);
160  for (long j = 0; j < D; j++) {
161  data[i][j].SetDims(d, d);
162  for (long u = 0; u < d; u++)
163  for (long v = 0; v < d; v++)
164  random(data[i][j][u][v]);
165  }
166  }
167  }
168 
169  bool get(mat_R& out, long i, long j, UNUSED long k) const override
170  {
171  long D = ea.sizeOfDimension(dim);
172  assertInRange(i, 0l, D, "Matrix index out of range");
173  assertInRange(j, 0l, D, "Matrix index out of range");
174  if (IsZero(data[i][j]))
175  return true;
176  out = data[i][j];
177  return false;
178  }
179 
180  const EncryptedArray& getEA() const override { return ea; }
181  long getDim() const override { return dim; }
182  bool multipleTransforms() const override { return false; }
183 };
184 
185 BlockMatMul1D* buildRandomBlockMatrix(const EncryptedArray& ea, long dim);
186 
187 //********************************
188 
189 template <typename type>
191 {
192  PA_INJECT(type)
193 
194  const EncryptedArray& ea;
195  long dim;
196 
197  std::vector<std::vector<std::vector<mat_R>>> data;
198 
199 public:
200  RandomMultiBlockMatrix(const EncryptedArray& _ea, long _dim) :
201  ea(_ea), dim(_dim)
202  {
203  RBak bak;
204  bak.save();
205  _ea.getAlMod().restoreContext();
206  long n = _ea.size();
207  long d = _ea.getDegree();
208  long D = _ea.sizeOfDimension(dim);
209 
210  NTL::RandomStreamPush push;
211  SetSeed(NTL::ZZ(123));
212 
213  data.resize(n / D);
214  for (long k = 0; k < n / D; k++) {
215  data[k].resize(D);
216  for (long i = 0; i < D; i++) {
217  data[k][i].resize(D);
218  for (long j = 0; j < D; j++) {
219  data[k][i][j].SetDims(d, d);
220  for (long u = 0; u < d; u++)
221  for (long v = 0; v < d; v++)
222  random(data[k][i][j][u][v]);
223  }
224  }
225  }
226  }
227 
228  bool get(mat_R& out, long i, long j, long k) const override
229  {
230  long n = ea.size();
231  long D = ea.sizeOfDimension(dim);
232 
233  assertInRange(i, 0l, D, "Matrix index out of range");
234  assertInRange(j, 0l, D, "Matrix index out of range");
235  assertInRange(k, 0l, n / D, "Matrix index out of range");
236  if (IsZero(data[k][i][j]))
237  return true;
238  out = data[k][i][j];
239  return false;
240  }
241 
242  const EncryptedArray& getEA() const override { return ea; }
243  long getDim() const override { return dim; }
244  bool multipleTransforms() const override { return true; }
245 };
246 
247 BlockMatMul1D* buildRandomMultiBlockMatrix(const EncryptedArray& ea, long dim);
248 
249 template <typename type>
251 {
252  PA_INJECT(type)
253  const EncryptedArray& ea;
254  std::vector<std::vector<RX>> data;
255 
256 public:
257  RandomFullMatrix(const EncryptedArray& _ea) : ea(_ea)
258  {
259  long n = ea.size();
260  long d = ea.getDegree();
261 
262  RBak bak;
263  bak.save();
265  data.resize(n);
266  for (long i : range(n)) {
267  data[i].resize(n);
268  for (long j : range(n))
269  random(data[i][j], d);
270  }
271  }
272 
273  bool get(RX& out, long i, long j) const override
274  {
275  assertInRange(i, 0l, ea.size(), "Matrix index out of range");
276  assertInRange(j, 0l, ea.size(), "Matrix index out of range");
277  if (IsZero(data[i][j]))
278  return true;
279  out = data[i][j];
280  return false;
281  }
282 
283  const EncryptedArray& getEA() const override { return ea; }
284 };
285 
286 MatMulFull* buildRandomFullMatrix(const EncryptedArray& ea);
287 
288 template <typename type>
290 {
291  PA_INJECT(type)
292  const EncryptedArray& ea;
293  std::vector<std::vector<mat_R>> data;
294 
295 public:
296  RandomFullBlockMatrix(const EncryptedArray& _ea) : ea(_ea)
297  {
298  long n = ea.size();
299  long d = ea.getDegree();
300 
301  RBak bak;
302  bak.save();
304  data.resize(n);
305  for (long i : range(n)) {
306  data[i].resize(n);
307  for (long j : range(n)) {
308  data[i][j].SetDims(d, d);
309  for (long u = 0; u < d; u++)
310  for (long v = 0; v < d; v++)
311  random(data[i][j][u][v]);
312  }
313  }
314  }
315 
316  bool get(mat_R& out, long i, long j) const override
317  {
318  assertInRange(i, 0l, ea.size(), "Matrix index out of range");
319  assertInRange(j, 0l, ea.size(), "Matrix index out of range");
320  if (IsZero(data[i][j]))
321  return true;
322  out = data[i][j];
323  return false;
324  }
325 
326  const EncryptedArray& getEA() const override { return ea; }
327 };
328 
329 BlockMatMulFull* buildRandomFullBlockMatrix(const EncryptedArray& ea);
330 
331 } // namespace helib
332 
333 #endif // ifndef HELIB_RANDOMMATRICES_H
long getDim() const override
Definition: randomMatrices.h:243
bool get(RX &out, long i, long j, UNUSED long k) const override
Definition: randomMatrices.h:60
long size() const
Definition: EncryptedArray.h:1357
RandomMultiBlockMatrix(const EncryptedArray &_ea, long _dim)
Definition: randomMatrices.h:200
const EncryptedArray & getEA() const override
Definition: randomMatrices.h:242
virtual ~RandomMultiMatrix()
Definition: randomMatrices.h:87
Definition: randomMatrices.h:251
bool IsZero(const zzX &a)
Definition: zzX.h:27
bool multipleTransforms() const override
Definition: randomMatrices.h:182
Definition: randomMatrices.h:25
RandomFullBlockMatrix(const EncryptedArray &_ea)
Definition: randomMatrices.h:296
bool get(mat_R &out, long i, long j) const override
Definition: randomMatrices.h:316
bool get(RX &out, long i, long j, long k) const override
Definition: randomMatrices.h:116
void restoreContext() const
Restores the NTL context for p^r.
Definition: PAlgebra.h:854
A simple wrapper for a smart pointer to an EncryptedArrayBase. This is the interface that higher-leve...
Definition: EncryptedArray.h:1233
const EncryptedArray & getEA() const override
Definition: randomMatrices.h:56
RandomMultiMatrix(const EncryptedArray &_ea, long _dim)
Definition: randomMatrices.h:88
long getDim() const override
Definition: randomMatrices.h:114
bool multipleTransforms() const override
Definition: randomMatrices.h:244
void assertInRange(const T &elem, const T &min, const T &max, const std::string &message, bool right_inclusive=false)
Definition: assertions.h:183
long getDim() const override
Definition: randomMatrices.h:181
Definition: randomMatrices.h:191
bool get(RX &out, long i, long j) const override
Definition: randomMatrices.h:273
const EncryptedArray & getEA() const override
Definition: randomMatrices.h:180
const EncryptedArray & getEA() const override
Definition: randomMatrices.h:283
PAlgebraMod alMod
The structure of Z[X]/(Phi_m(X),p^r)
Definition: Context.h:134
MatMul1D * buildRandomMultiMatrix(const EncryptedArray &ea, long dim)
Definition: randomMatrices.cpp:36
long sizeOfDimension(long i) const
Definition: EncryptedArray.h:1359
virtual ~RandomMatrix()
Definition: randomMatrices.h:35
Definition: matmul.h:60
const Context & getContext() const
Definition: EncryptedArray.h:1301
const EncryptedArray & getEA() const override
Definition: randomMatrices.h:326
BlockMatMul1D * buildRandomMultiBlockMatrix(const EncryptedArray &ea, long dim)
Definition: randomMatrices.cpp:68
const PAlgebraMod & getAlMod() const
Definition: EncryptedArray.h:1302
bool multipleTransforms() const override
Definition: randomMatrices.h:57
void random(const EncryptedArray &ea, PlaintextArray &pa)
Definition: EncryptedArray.cpp:875
long getDegree() const
Definition: EncryptedArray.h:1304
Definition: randomMatrices.h:137
RandomMatrix(const EncryptedArray &_ea, long _dim)
Definition: randomMatrices.h:36
Definition: apiAttributes.h:21
BlockMatMulFull * buildRandomFullBlockMatrix(const EncryptedArray &ea)
Definition: randomMatrices.cpp:96
Definition: matmul.h:34
Definition: randomMatrices.h:77
Definition: matmul.h:102
MatMulFull * buildRandomFullMatrix(const EncryptedArray &ea)
Definition: randomMatrices.cpp:82
BlockMatMul1D * buildRandomBlockMatrix(const EncryptedArray &ea, long dim)
Definition: randomMatrices.cpp:52
RandomFullMatrix(const EncryptedArray &_ea)
Definition: randomMatrices.h:257
bool multipleTransforms() const override
Definition: randomMatrices.h:113
bool get(mat_R &out, long i, long j, UNUSED long k) const override
Definition: randomMatrices.h:169
bool get(mat_R &out, long i, long j, long k) const override
Definition: randomMatrices.h:228
Definition: randomMatrices.h:290
Definition: matmul.h:165
RandomBlockMatrix(const EncryptedArray &_ea, long _dim)
Definition: randomMatrices.h:146
long getDim() const override
Definition: randomMatrices.h:58
const EncryptedArray & getEA() const override
Definition: randomMatrices.h:112
general_range< long > range(long n)
Definition: range.h:57
MatMul1D * buildRandomMatrix(const EncryptedArray &ea, long dim)
Definition: randomMatrices.cpp:22