replicate.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_REPLICATE_H
13 #define HELIB_REPLICATE_H
14 
34 #include <helib/EncryptedArray.h>
35 #include <helib/Ptxt.h>
36 
37 namespace helib {
38 
39 // set to true to see some more info...
40 NTL_THREAD_LOCAL
41 extern bool replicateVerboseFlag;
42 
43 class RepAux; // forward declarations
44 class RepAuxDim;
45 
48 void replicate(const EncryptedArray& ea, Ctxt& ctx, long pos);
49 
52 void replicate0(const EncryptedArray& ea, Ctxt& ctxt, long pos);
53 
56 {
57 public:
58  virtual void handle(const Ctxt& ctxt) = 0;
59  virtual ~ReplicateHandler() {}
60 
61  // The earlyStop call can be used to quit the replication mid-way, leaving
62  // a ciphertext with (e.g.) two different entries, each replicated n/2 times
63  // FIXME: Why does this function have arguments? Maybe remove them and then
64  // remove the pragma.
65 #pragma GCC diagnostic push
66 #pragma GCC diagnostic ignored "-Wunused-parameter"
67  virtual bool earlyStop(long d, long k, long prodDim) { return false; }
68 #pragma GCC diagnostic pop
69 };
70 // Applications will derive from this class a handler that actually
71 // does something with the replicated ciphertexts. But it can be used
72 // by itself as a do-nothing replicator for debugging, or to calculate
73 // the required automorphisms (see automorphVals in numbTh.h)
74 
90 void replicateAll(const EncryptedArray& ea,
91  const Ctxt& ctxt,
92  ReplicateHandler* handler,
93  long recBound = 64,
94  RepAuxDim* repAuxPtr = nullptr);
95 
98 void replicateAll(std::vector<Ctxt>& v,
99  const EncryptedArray& ea,
100  const Ctxt& ctxt,
101  long recBound = 64,
102  RepAuxDim* repAuxPtr = nullptr);
103 
114 template <typename Scheme>
115 void replicateAll(std::vector<Ptxt<Scheme>>& v,
116  const EncryptedArray&,
117  const Ptxt<Scheme>& ptxt)
118 {
119  v = ptxt.replicateAll();
120 }
121 
125 void replicateAllOrig(const EncryptedArray& ea,
126  const Ctxt& ctxt,
127  ReplicateHandler* handler,
128  RepAux* repAuxPtr = nullptr);
129 
130 void replicate(const EncryptedArray& ea, PlaintextArray& pa, long i);
131 
139 template <typename Scheme>
140 void replicate(const EncryptedArray&, Ptxt<Scheme>& ptxt, long i)
141 {
142  ptxt.replicate(i);
143 }
144 
145 // Structures to keep tables of masking constants that are used in
146 // replication. A calling application can either supply this structure
147 // itself (if it is going to replicate the same tables in multiple
148 // replicate operations), or is cal let the replication code use its
149 // own tables (in which case they are destroyed at the end of the
150 // replication process)
151 
153 class RepAux
154 { // one table for the whole thing
155 private:
156  std::vector<copied_ptr<DoubleCRT>> _tab;
157 
158 public:
159  copied_ptr<DoubleCRT>& tab(long i)
160  {
161  if (i >= lsize(_tab))
162  _tab.resize(i + 1);
163  return _tab[i];
164  }
165 };
166 
167 class RepAuxDim
168 { // two tables per dimension
169 private:
170  std::vector<std::vector<copied_ptr<DoubleCRT>>> _tab, _tab1;
171 
172 public:
173  copied_ptr<DoubleCRT>& tab(long d, long i)
174  {
175  if (d >= lsize(_tab))
176  _tab.resize(d + 1);
177  if (i >= lsize(_tab[d]))
178  _tab[d].resize(i + 1);
179  return _tab[d][i];
180  }
181 
182  copied_ptr<DoubleCRT>& tab1(long d, long i)
183  {
184  if (d >= lsize(_tab1))
185  _tab1.resize(d + 1);
186  if (i >= lsize(_tab1[d]))
187  _tab1[d].resize(i + 1);
188  return _tab1[d][i];
189  }
190 };
192 
193 } // namespace helib
194 
195 #endif // ifndef HELIB_REPLICATE_H
An object that mimics the functionality of the Ctxt object, and acts as a convenient entry point for ...
Definition: Ptxt.h:280
long lsize(const std::vector< T > &v)
Size of STL vector as a long (rather than unsigned long)
Definition: NumbTh.h:702
virtual bool earlyStop(long d, long k, long prodDim)
Definition: replicate.h:67
virtual void handle(const Ctxt &ctxt)=0
Ptxt< Scheme > & replicate(long pos)
Replicate single slot across all slots.
Definition: Ptxt.cpp:742
virtual ~ReplicateHandler()
Definition: replicate.h:59
A simple wrapper for a smart pointer to an EncryptedArrayBase. This is the interface that higher-leve...
Definition: EncryptedArray.h:1233
void replicateAllOrig(const EncryptedArray &ea, const Ctxt &ctxt, ReplicateHandler *handler, RepAux *repAuxPtr=nullptr)
Definition: replicate.cpp:225
void replicate(const EncryptedArray &ea, Ctxt &ctx, long pos)
The value in slot #pos is replicated in all other slots. On an n-slot ciphertext, this algorithm perf...
Definition: replicate.cpp:26
void replicate0(const EncryptedArray &ea, Ctxt &ctxt, long pos)
A lower-level routine. Same as replicate, but assumes all slots are zero except slot #pos.
Definition: replicate.cpp:43
Definition: apiAttributes.h:21
std::vector< Ptxt< Scheme > > replicateAll() const
Generate a vector of plaintexts with each slot replicated in each plaintext.
Definition: Ptxt.cpp:752
NTL_THREAD_LOCAL bool replicateVerboseFlag
Definition: replicate.cpp:20
A Ctxt object holds a single ciphertext.
Definition: Ctxt.h:273
An abstract class to handle call-backs to get the output of replicate.
Definition: replicate.h:56
void replicateAll(const EncryptedArray &ea, const Ctxt &ctxt, ReplicateHandler *handler, long recBound=64, RepAuxDim *repAuxPtr=nullptr)
Definition: replicate.cpp:666