Qrack  9.9
General classical-emulating-quantum development framework
qengine.hpp
Go to the documentation of this file.
1 //
3 // (C) Daniel Strano and the Qrack contributors 2017-2022. All rights reserved.
4 //
5 // This is a multithreaded, universal quantum register simulation, allowing
6 // (nonphysical) register cloning and direct measurement of probability and
7 // phase, to leverage what advantages classical emulation of qubits can have.
8 //
9 // Licensed under the GNU Lesser General Public License V3.
10 // See LICENSE.md in the project root or https://www.gnu.org/licenses/lgpl-3.0.en.html
11 // for details.
12 
13 #pragma once
14 
15 #include "qinterface.hpp"
16 #include "qparity.hpp"
17 
18 #if ENABLE_ALU
19 #include "qalu.hpp"
20 #endif
21 
22 namespace Qrack {
23 
24 class QEngine;
25 typedef std::shared_ptr<QEngine> QEnginePtr;
26 
30 #if ENABLE_ALU
31 class QEngine : public QAlu, public QParity, public QInterface {
32 #else
33 class QEngine : public QParity, public QInterface {
34 #endif
35 protected:
36  bool useHostRam;
41 
42  inline bool IsPhase(const complex* mtrx) { return IS_NORM_0(mtrx[1]) && IS_NORM_0(mtrx[2]); }
43  inline bool IsInvert(const complex* mtrx) { return IS_NORM_0(mtrx[0]) && IS_NORM_0(mtrx[3]); }
44 
45  bool IsIdentity(const complex* mtrx, bool isControlled)
46  {
47  // If the effect of applying the buffer would be (approximately or exactly) that of applying the identity
48  // operator, then we can discard this buffer without applying it.
49  if (!IS_NORM_0(mtrx[0U] - mtrx[3U]) || !IsPhase(mtrx)) {
50  return false;
51  }
52 
53  // Now, we know that mtrx[1] and mtrx[2] are 0 and mtrx[0]==mtrx[3].
54 
55  // If the global phase offset has been randomized, we assume that global phase offsets are inconsequential, for
56  // the user's purposes. If the global phase offset has not been randomized, user code might explicitly depend on
57  // the global phase offset.
58 
59  if ((isControlled || !randGlobalPhase) && !IS_SAME(ONE_CMPLX, mtrx[0U])) {
60  return false;
61  }
62 
63  // If we haven't returned false by now, we're buffering an identity operator (exactly or up to an arbitrary
64  // global phase factor).
65  return true;
66  }
67 
68  void EitherMtrx(const std::vector<bitLenInt>& controls, const complex* mtrx, bitLenInt target, bool isAnti);
69 
70 public:
71  QEngine(bitLenInt qBitCount, qrack_rand_gen_ptr rgp = nullptr, bool doNorm = false, bool randomGlobalPhase = true,
72  bool useHostMem = false, bool useHardwareRNG = true, real1_f norm_thresh = REAL1_EPSILON)
73  : QInterface(qBitCount, rgp, doNorm, useHardwareRNG, randomGlobalPhase, norm_thresh)
74  , useHostRam(useHostMem)
76  , maxQPowerOcl(pow2Ocl(qBitCount))
77  {
78  if (qBitCount > (sizeof(bitCapIntOcl) * bitsInByte)) {
79  throw std::invalid_argument(
80  "Cannot instantiate a register with greater capacity than native types on emulating system.");
81  }
82  };
83 
86  : useHostRam(false)
88  , maxQPowerOcl(1U)
89  {
90  // Intentionally left blank
91  }
92 
93  virtual ~QEngine()
94  {
95  // Virtual destructor for inheritance
96  }
97 
98  virtual void SetQubitCount(bitLenInt qb)
99  {
102  }
103 
106  {
107  Finish();
108  return (real1_f)runningNorm;
109  }
110 
112  virtual void SwitchHostPtr(bool useHostMem){};
114  virtual void ResetHostPtr() { SwitchHostPtr(useHostRam); }
116  virtual void SetDevice(int64_t dID) {}
118  virtual int64_t GetDevice() { return -1; }
119 
121  virtual void ZeroAmplitudes() = 0;
123  virtual void CopyStateVec(QEnginePtr src) = 0;
125  virtual bool IsZeroAmplitude() = 0;
127  virtual void GetAmplitudePage(complex* pagePtr, bitCapIntOcl offset, bitCapIntOcl length) = 0;
129  virtual void SetAmplitudePage(const complex* pagePtr, bitCapIntOcl offset, bitCapIntOcl length) = 0;
132  virtual void SetAmplitudePage(
133  QEnginePtr pageEnginePtr, bitCapIntOcl srcOffset, bitCapIntOcl dstOffset, bitCapIntOcl length) = 0;
136  virtual void ShuffleBuffers(QEnginePtr engine) = 0;
138  virtual QEnginePtr CloneEmpty() = 0;
139 
142  virtual void QueueSetDoNormalize(bool doNorm) = 0;
145  virtual void QueueSetRunningNorm(real1_f runningNrm) = 0;
146 
147  virtual void ZMask(const bitCapInt& mask) { PhaseParity((real1_f)PI_R1, mask); }
148 
149  virtual bool ForceM(bitLenInt qubitIndex, bool result, bool doForce = true, bool doApply = true);
150  virtual bitCapInt ForceM(const std::vector<bitLenInt>& bits, const std::vector<bool>& values, bool doApply = true);
151  virtual bitCapInt ForceMReg(
152  bitLenInt start, bitLenInt length, const bitCapInt& result, bool doForce = true, bool doApply = true);
153 
154  virtual void ApplyM(const bitCapInt& qPower, bool result, const complex& nrm)
155  {
156  const bitCapInt powerTest = result ? qPower : ZERO_BCI;
157  ApplyM(qPower, powerTest, nrm);
158  }
159  virtual void ApplyM(const bitCapInt& regMask, const bitCapInt& result, const complex& nrm) = 0;
160 
161  virtual void Mtrx(const complex* mtrx, bitLenInt qubit);
162  virtual void MCMtrx(const std::vector<bitLenInt>& controls, const complex* mtrx, bitLenInt target)
163  {
164  EitherMtrx(controls, mtrx, target, false);
165  }
166  virtual void MACMtrx(const std::vector<bitLenInt>& controls, const complex* mtrx, bitLenInt target)
167  {
168  EitherMtrx(controls, mtrx, target, true);
169  }
170  virtual void UCMtrx(
171  const std::vector<bitLenInt>& controls, const complex* mtrx, bitLenInt target, const bitCapInt& controlPerm);
172  virtual void CSwap(const std::vector<bitLenInt>& controls, bitLenInt qubit1, bitLenInt qubit2);
173  virtual void AntiCSwap(const std::vector<bitLenInt>& controls, bitLenInt qubit1, bitLenInt qubit2);
174  virtual void CSqrtSwap(const std::vector<bitLenInt>& controls, bitLenInt qubit1, bitLenInt qubit2);
175  virtual void AntiCSqrtSwap(const std::vector<bitLenInt>& controls, bitLenInt qubit1, bitLenInt qubit2);
176  virtual void CISqrtSwap(const std::vector<bitLenInt>& controls, bitLenInt qubit1, bitLenInt qubit2);
177  virtual void AntiCISqrtSwap(const std::vector<bitLenInt>& controls, bitLenInt qubit1, bitLenInt qubit2);
178 
179 #if ENABLE_ALU
180  using QInterface::M;
181  virtual bool M(bitLenInt q) { return QInterface::M(q); }
182  using QInterface::X;
183  virtual void X(bitLenInt q) { QInterface::X(q); }
184  virtual void INC(const bitCapInt& toAdd, bitLenInt start, bitLenInt length)
185  {
186  QInterface::INC(toAdd, start, length);
187  }
188  virtual void DEC(const bitCapInt& toSub, bitLenInt start, bitLenInt length)
189  {
190  QInterface::DEC(toSub, start, length);
191  }
192  virtual void INCC(const bitCapInt& toAdd, bitLenInt start, bitLenInt length, bitLenInt carryIndex)
193  {
194  QInterface::INCC(toAdd, start, length, carryIndex);
195  }
196  virtual void DECC(const bitCapInt& toSub, bitLenInt start, bitLenInt length, bitLenInt carryIndex)
197  {
198  QInterface::DECC(toSub, start, length, carryIndex);
199  }
200  virtual void INCS(const bitCapInt& toAdd, bitLenInt start, bitLenInt length, bitLenInt overflowIndex)
201  {
202  QInterface::INCS(toAdd, start, length, overflowIndex);
203  }
204  virtual void DECS(const bitCapInt& toSub, bitLenInt start, bitLenInt length, bitLenInt overflowIndex)
205  {
206  QInterface::DECS(toSub, start, length, overflowIndex);
207  }
208  virtual void CINC(
209  const bitCapInt& toAdd, bitLenInt inOutStart, bitLenInt length, const std::vector<bitLenInt>& controls)
210  {
211  QInterface::CINC(toAdd, inOutStart, length, controls);
212  }
213  virtual void CDEC(
214  const bitCapInt& toSub, bitLenInt inOutStart, bitLenInt length, const std::vector<bitLenInt>& controls)
215  {
216  QInterface::CDEC(toSub, inOutStart, length, controls);
217  }
218  virtual void INCDECC(const bitCapInt& toAdd, bitLenInt start, bitLenInt length, bitLenInt carryIndex)
219  {
220  QInterface::INCDECC(toAdd, start, length, carryIndex);
221  }
222  virtual void MULModNOut(
223  const bitCapInt& toMul, const bitCapInt& modN, bitLenInt inStart, bitLenInt outStart, bitLenInt length)
224  {
225  QInterface::MULModNOut(toMul, modN, inStart, outStart, length);
226  }
227  virtual void IMULModNOut(
228  const bitCapInt& toMul, const bitCapInt& modN, bitLenInt inStart, bitLenInt outStart, bitLenInt length)
229  {
230  QInterface::IMULModNOut(toMul, modN, inStart, outStart, length);
231  }
232  virtual void CMULModNOut(const bitCapInt& toMul, const bitCapInt& modN, bitLenInt inStart, bitLenInt outStart,
233  bitLenInt length, const std::vector<bitLenInt>& controls)
234  {
235  QInterface::CMULModNOut(toMul, modN, inStart, outStart, length, controls);
236  }
237  virtual void CIMULModNOut(const bitCapInt& toMul, const bitCapInt& modN, bitLenInt inStart, bitLenInt outStart,
238  bitLenInt length, const std::vector<bitLenInt>& controls)
239  {
240  QInterface::CIMULModNOut(toMul, modN, inStart, outStart, length, controls);
241  }
242 #endif
243 
244  using QInterface::Swap;
245  virtual void Swap(bitLenInt qubit1, bitLenInt qubit2);
246  using QInterface::ISwap;
247  virtual void ISwap(bitLenInt qubit1, bitLenInt qubit2);
248  using QInterface::IISwap;
249  virtual void IISwap(bitLenInt qubit1, bitLenInt qubit2);
250  using QInterface::SqrtSwap;
251  virtual void SqrtSwap(bitLenInt qubit1, bitLenInt qubit2);
252  using QInterface::ISqrtSwap;
253  virtual void ISqrtSwap(bitLenInt qubit1, bitLenInt qubit2);
254  using QInterface::FSim;
255  virtual void FSim(real1_f theta, real1_f phi, bitLenInt qubitIndex1, bitLenInt qubitIndex2);
256 
257  virtual real1_f ProbAll(const bitCapInt& fullRegister)
258  {
259  if (doNormalize) {
260  NormalizeState();
261  }
262 
263  return clampProb((real1_f)norm(GetAmplitude(fullRegister)));
264  }
265  virtual real1_f CtrlOrAntiProb(bool controlState, bitLenInt control, bitLenInt target);
266  virtual real1_f CProb(bitLenInt control, bitLenInt target) { return CtrlOrAntiProb(true, control, target); }
267  virtual real1_f ACProb(bitLenInt control, bitLenInt target) { return CtrlOrAntiProb(false, control, target); }
268  virtual real1_f ProbReg(bitLenInt start, bitLenInt length, const bitCapInt& permutation) = 0;
269  virtual void ProbRegAll(bitLenInt start, bitLenInt length, real1* probsArray);
270  virtual real1_f ProbMask(const bitCapInt& mask, const bitCapInt& permutation) = 0;
271 
272  virtual real1_f GetExpectation(bitLenInt valueStart, bitLenInt valueLength) = 0;
273 
274  virtual void Apply2x2(bitCapIntOcl offset1, bitCapIntOcl offset2, const complex* mtrx, bitLenInt bitCount,
275  bitCapIntOcl const* qPowersSorted, bool doCalcNorm, real1_f norm_thresh = REAL1_DEFAULT_ARG) = 0;
276  virtual void ApplyControlled2x2(const std::vector<bitLenInt>& controls, bitLenInt target, const complex* mtrx);
277  virtual void ApplyAntiControlled2x2(const std::vector<bitLenInt>& controls, bitLenInt target, const complex* mtrx);
278 
279  using QInterface::Decompose;
281  {
282  QEnginePtr dest = CloneEmpty();
283  dest->SetQubitCount(length);
284  Decompose(start, dest);
285 
286  return dest;
287  }
288 
289  virtual std::map<bitCapInt, int> MultiShotMeasureMask(const std::vector<bitCapInt>& qPowers, unsigned shots);
290  virtual void MultiShotMeasureMask(
291  const std::vector<bitCapInt>& qPowers, unsigned shots, unsigned long long* shotsArray);
292 };
293 } // namespace Qrack
Definition: qalu.hpp:22
Abstract QEngine implementation, for all "Schroedinger method" engines.
Definition: qengine.hpp:31
virtual void SetQubitCount(bitLenInt qb)
Definition: qengine.hpp:98
virtual void CIMULModNOut(const bitCapInt &toMul, const bitCapInt &modN, bitLenInt inStart, bitLenInt outStart, bitLenInt length, const std::vector< bitLenInt > &controls)
Inverse of controlled multiplication modulo N by integer, (out of place)
Definition: qengine.hpp:237
virtual void ApplyAntiControlled2x2(const std::vector< bitLenInt > &controls, bitLenInt target, const complex *mtrx)
Definition: qengine.cpp:399
virtual void CSwap(const std::vector< bitLenInt > &controls, bitLenInt qubit1, bitLenInt qubit2)
Apply a swap with arbitrary control bits.
Definition: qengine.cpp:214
virtual std::map< bitCapInt, int > MultiShotMeasureMask(const std::vector< bitCapInt > &qPowers, unsigned shots)
Statistical measure of masked permutation probability.
Definition: qengine.cpp:556
virtual void ApplyControlled2x2(const std::vector< bitLenInt > &controls, bitLenInt target, const complex *mtrx)
Definition: qengine.cpp:383
virtual real1_f ProbReg(bitLenInt start, bitLenInt length, const bitCapInt &permutation)=0
Direct measure of register permutation probability.
virtual void SwitchHostPtr(bool useHostMem)
Switch to/from host/device state vector bufffer.
Definition: qengine.hpp:112
virtual ~QEngine()
Definition: qengine.hpp:93
virtual void INCDECC(const bitCapInt &toAdd, bitLenInt start, bitLenInt length, bitLenInt carryIndex)
Common driver method behind INCC and DECC (without sign, with carry)
Definition: qengine.hpp:218
virtual void CISqrtSwap(const std::vector< bitLenInt > &controls, bitLenInt qubit1, bitLenInt qubit2)
Apply an inverse square root of swap with arbitrary control bits.
Definition: qengine.cpp:326
virtual void ApplyM(const bitCapInt &regMask, const bitCapInt &result, const complex &nrm)=0
virtual void ISqrtSwap(bitLenInt qubit1, bitLenInt qubit2)
Inverse square root of Swap gate.
Definition: gates.cpp:225
void EitherMtrx(const std::vector< bitLenInt > &controls, const complex *mtrx, bitLenInt target, bool isAnti)
Definition: qengine.cpp:29
virtual void INCC(const bitCapInt &toAdd, bitLenInt start, bitLenInt length, bitLenInt carryIndex)
Add integer (without sign, with carry)
Definition: qengine.hpp:192
virtual void SetDevice(int64_t dID)
Set GPU device ID.
Definition: qengine.hpp:116
virtual void Mtrx(const complex *mtrx, bitLenInt qubit)
Apply an arbitrary single bit unitary transformation.
Definition: qengine.cpp:19
virtual void CSqrtSwap(const std::vector< bitLenInt > &controls, bitLenInt qubit1, bitLenInt qubit2)
Apply a square root of swap with arbitrary control bits.
Definition: qengine.cpp:269
virtual void ApplyM(const bitCapInt &qPower, bool result, const complex &nrm)
Definition: qengine.hpp:154
virtual void UCMtrx(const std::vector< bitLenInt > &controls, const complex *mtrx, bitLenInt target, const bitCapInt &controlPerm)
Apply an arbitrary single bit unitary transformation, with arbitrary control bits,...
Definition: qengine.cpp:51
real1 runningNorm
The value stored in runningNorm should always be the total probability implied by the norm of all amp...
Definition: qengine.hpp:39
virtual real1_f CProb(bitLenInt control, bitLenInt target)
Direct measure of bit probability to be in |1> state, if control bit is |1>.
Definition: qengine.hpp:266
virtual void FSim(real1_f theta, real1_f phi, bitLenInt qubit1, bitLenInt qubit2)=0
The 2-qubit "fSim" gate, (useful in the simulation of particles with fermionic statistics)
bool IsInvert(const complex *mtrx)
Definition: qengine.hpp:43
virtual void SetAmplitudePage(const complex *pagePtr, bitCapIntOcl offset, bitCapIntOcl length)=0
Copy a "page" of amplitudes from pagePtr into this QEngine's internal state.
virtual real1_f ACProb(bitLenInt control, bitLenInt target)
Direct measure of bit probability to be in |1> state, if control bit is |0>.
Definition: qengine.hpp:267
virtual void AntiCISqrtSwap(const std::vector< bitLenInt > &controls, bitLenInt qubit1, bitLenInt qubit2)
Apply an inverse square root of swap with arbitrary (anti) control bits.
Definition: qengine.cpp:356
bitCapIntOcl maxQPowerOcl
Definition: qengine.hpp:40
virtual void Decompose(bitLenInt start, QInterfacePtr dest)=0
Minimally decompose a set of contiguous bits from the separably composed unit, into "destination".
virtual real1_f ProbMask(const bitCapInt &mask, const bitCapInt &permutation)=0
Direct measure of masked permutation probability.
virtual void IISwap(bitLenInt qubit1, bitLenInt qubit2)
Inverse ISwap - Swap values of two bits in register, and apply phase factor of -i if bits are differe...
Definition: gates.cpp:190
virtual void ResetHostPtr()
Reset host/device state vector bufffer usage to default.
Definition: qengine.hpp:114
virtual bool ForceM(bitLenInt qubitIndex, bool result, bool doForce=true, bool doApply=true)
PSEUDO-QUANTUM - Acts like a measurement gate, except with a specified forced result.
Definition: qengine.cpp:80
virtual void MULModNOut(const bitCapInt &toMul, const bitCapInt &modN, bitLenInt inStart, bitLenInt outStart, bitLenInt length)
Multiplication modulo N by integer, (out of place)
Definition: qengine.hpp:222
virtual void DEC(const bitCapInt &toSub, bitLenInt start, bitLenInt length)
Add integer (without sign)
Definition: qengine.hpp:188
virtual void IMULModNOut(const bitCapInt &toMul, const bitCapInt &modN, bitLenInt inStart, bitLenInt outStart, bitLenInt length)
Inverse of multiplication modulo N by integer, (out of place)
Definition: qengine.hpp:227
virtual void ISwap(bitLenInt qubit1, bitLenInt qubit2)
Swap values of two bits in register, and apply phase factor of i if bits are different.
Definition: gates.cpp:178
virtual void ZMask(const bitCapInt &mask)
Masked Z gate.
Definition: qengine.hpp:147
virtual void DECC(const bitCapInt &toSub, bitLenInt start, bitLenInt length, bitLenInt carryIndex)
Subtract classical integer (without sign, with carry)
Definition: qengine.hpp:196
bool useHostRam
Definition: qengine.hpp:36
virtual void CopyStateVec(QEnginePtr src)=0
Exactly copy the state vector of a different QEngine instance.
virtual void AntiCSwap(const std::vector< bitLenInt > &controls, bitLenInt qubit1, bitLenInt qubit2)
Apply a swap with arbitrary (anti) control bits.
Definition: qengine.cpp:243
virtual int64_t GetDevice()
Get GPU device ID.
Definition: qengine.hpp:118
virtual bool IsZeroAmplitude()=0
Returns "true" only if amplitudes are all totally 0.
virtual void Apply2x2(bitCapIntOcl offset1, bitCapIntOcl offset2, const complex *mtrx, bitLenInt bitCount, bitCapIntOcl const *qPowersSorted, bool doCalcNorm, real1_f norm_thresh=REAL1_DEFAULT_ARG)=0
bool IsIdentity(const complex *mtrx, bool isControlled)
Definition: qengine.hpp:45
virtual QEnginePtr CloneEmpty()=0
Clone this QEngine's settings, with a zeroed state vector.
virtual void ZeroAmplitudes()=0
Set all amplitudes to 0, and optionally temporarily deallocate state vector RAM.
virtual void SqrtSwap(bitLenInt qubit1, bitLenInt qubit2)
Square root of Swap gate.
Definition: gates.cpp:202
virtual QInterfacePtr Decompose(bitLenInt start, bitLenInt length)
Schmidt decompose a length of qubits.
Definition: qengine.hpp:280
virtual void QueueSetDoNormalize(bool doNorm)=0
Add an operation to the (OpenCL) queue, to set the value of doNormalize, which controls whether to au...
virtual bool M(bitLenInt q)
Definition: qengine.hpp:181
virtual real1_f GetRunningNorm()
Get in-flight renormalization factor.
Definition: qengine.hpp:105
virtual void SetAmplitudePage(QEnginePtr pageEnginePtr, bitCapIntOcl srcOffset, bitCapIntOcl dstOffset, bitCapIntOcl length)=0
Copy a "page" of amplitudes from another QEngine, pointed to by pageEnginePtr, into this QEngine's in...
virtual void DECS(const bitCapInt &toSub, bitLenInt start, bitLenInt length, bitLenInt overflowIndex)
Add a classical integer to the register, with sign and without carry.
Definition: qengine.hpp:204
virtual void INCS(const bitCapInt &toAdd, bitLenInt start, bitLenInt length, bitLenInt overflowIndex)
Add a classical integer to the register, with sign and without carry.
Definition: qengine.hpp:200
virtual real1_f CtrlOrAntiProb(bool controlState, bitLenInt control, bitLenInt target)
Definition: qengine.cpp:475
virtual void MACMtrx(const std::vector< bitLenInt > &controls, const complex *mtrx, bitLenInt target)
Apply an arbitrary single bit unitary transformation, with arbitrary (anti-)control bits.
Definition: qengine.hpp:166
virtual void CINC(const bitCapInt &toAdd, bitLenInt inOutStart, bitLenInt length, const std::vector< bitLenInt > &controls)
Add integer (without sign, with controls)
Definition: qengine.hpp:208
virtual void ProbRegAll(bitLenInt start, bitLenInt length, real1 *probsArray)
Definition: qengine.cpp:492
QEngine(bitLenInt qBitCount, qrack_rand_gen_ptr rgp=nullptr, bool doNorm=false, bool randomGlobalPhase=true, bool useHostMem=false, bool useHardwareRNG=true, real1_f norm_thresh=REAL1_EPSILON)
Definition: qengine.hpp:71
virtual void Swap(bitLenInt qubit1, bitLenInt qubit2)
Swap values of two bits in register.
Definition: gates.cpp:167
virtual void GetAmplitudePage(complex *pagePtr, bitCapIntOcl offset, bitCapIntOcl length)=0
Copy a "page" of amplitudes from this QEngine's internal state, into pagePtr.
virtual bitCapInt ForceMReg(bitLenInt start, bitLenInt length, const bitCapInt &result, bool doForce=true, bool doApply=true)
Measure permutation state of a register.
Definition: qengine.cpp:503
virtual void MCMtrx(const std::vector< bitLenInt > &controls, const complex *mtrx, bitLenInt target)
Apply an arbitrary single bit unitary transformation, with arbitrary control bits.
Definition: qengine.hpp:162
virtual void QueueSetRunningNorm(real1_f runningNrm)=0
Add an operation to the (OpenCL) queue, to set the value of runningNorm, which is the normalization c...
bool IsPhase(const complex *mtrx)
Definition: qengine.hpp:42
virtual void ShuffleBuffers(QEnginePtr engine)=0
Swap the high half of this engine with the low half of another.
virtual void X(bitLenInt q)
Definition: qengine.hpp:183
virtual void CMULModNOut(const bitCapInt &toMul, const bitCapInt &modN, bitLenInt inStart, bitLenInt outStart, bitLenInt length, const std::vector< bitLenInt > &controls)
Controlled multiplication modulo N by integer, (out of place)
Definition: qengine.hpp:232
virtual void INC(const bitCapInt &toAdd, bitLenInt start, bitLenInt length)
Add integer (without sign)
Definition: qengine.hpp:184
virtual void CDEC(const bitCapInt &toSub, bitLenInt inOutStart, bitLenInt length, const std::vector< bitLenInt > &controls)
Subtract integer (without sign, with controls)
Definition: qengine.hpp:213
virtual real1_f GetExpectation(bitLenInt valueStart, bitLenInt valueLength)=0
QEngine()
Default constructor, primarily for protected internal use.
Definition: qengine.hpp:85
virtual real1_f ProbAll(const bitCapInt &fullRegister)
Direct measure of full permutation probability.
Definition: qengine.hpp:257
virtual void AntiCSqrtSwap(const std::vector< bitLenInt > &controls, bitLenInt qubit1, bitLenInt qubit2)
Apply a square root of swap with arbitrary (anti) control bits.
Definition: qengine.cpp:299
A "Qrack::QInterface" is an abstract interface exposing qubit permutation state vector with methods t...
Definition: qinterface.hpp:138
bitCapInt maxQPower
Definition: qinterface.hpp:146
bool randGlobalPhase
Definition: qinterface.hpp:141
virtual void Decompose(bitLenInt start, QInterfacePtr dest)=0
Minimally decompose a set of contiguous bits from the separably composed unit, into "destination".
virtual void SetQubitCount(bitLenInt qb)
Definition: qinterface.hpp:250
static real1_f clampProb(real1_f toClamp)
Definition: qinterface.hpp:155
bool doNormalize
Definition: qinterface.hpp:140
virtual complex GetAmplitude(const bitCapInt &perm)=0
Get the representational amplitude of a full permutation.
Definition: qparity.hpp:22
Half-precision floating-point type.
Definition: half.hpp:2222
virtual void MULModNOut(const bitCapInt &toMul, const bitCapInt &modN, bitLenInt inStart, bitLenInt outStart, bitLenInt length)
Multiplication modulo N by integer, (out of place)
Definition: arithmetic.cpp:126
virtual void DECS(const bitCapInt &toSub, bitLenInt start, bitLenInt length, bitLenInt overflowIndex)
Subtract a classical integer from the register, with sign and without carry.
Definition: qinterface.hpp:2175
virtual void INCDECC(const bitCapInt &toAdd, bitLenInt start, bitLenInt length, bitLenInt carryIndex)
Common driver method behind INCC and DECC.
Definition: arithmetic.cpp:52
virtual void CINC(const bitCapInt &toAdd, bitLenInt inOutStart, bitLenInt length, const std::vector< bitLenInt > &controls)
Add integer (without sign, with controls)
Definition: arithmetic.cpp:78
virtual void INCS(const bitCapInt &toAdd, bitLenInt start, bitLenInt length, bitLenInt overflowIndex)
Add a classical integer to the register, with sign and without carry.
Definition: qinterface.hpp:2164
virtual void DECC(const bitCapInt &toSub, bitLenInt start, bitLenInt length, bitLenInt carryIndex)
Subtract classical integer (without sign, with carry)
Definition: qinterface.hpp:2138
virtual void DEC(const bitCapInt &toSub, bitLenInt start, bitLenInt length)
Subtract classical integer (without sign)
Definition: qinterface.hpp:2116
virtual void INC(const bitCapInt &toAdd, bitLenInt start, bitLenInt length)
Add integer (without sign)
Definition: arithmetic.cpp:20
virtual void IMULModNOut(const bitCapInt &toMul, const bitCapInt &modN, bitLenInt inStart, bitLenInt outStart, bitLenInt length)
Inverse of multiplication modulo N by integer, (out of place)
Definition: arithmetic.cpp:164
virtual void CDEC(const bitCapInt &toSub, bitLenInt inOutStart, bitLenInt length, const std::vector< bitLenInt > &controls)
Subtract classical integer (without sign, with controls)
Definition: qinterface.hpp:2156
virtual void INCC(const bitCapInt &toAdd, bitLenInt start, bitLenInt length, bitLenInt carryIndex)
Add integer (without sign, with carry)
Definition: qinterface.hpp:2126
virtual void CMULModNOut(const bitCapInt &toMul, const bitCapInt &modN, bitLenInt inStart, bitLenInt outStart, bitLenInt length, const std::vector< bitLenInt > &controls)
Controlled multiplication modulo N by integer, (out of place)
Definition: arithmetic.cpp:200
virtual void CIMULModNOut(const bitCapInt &toMul, const bitCapInt &modN, bitLenInt inStart, bitLenInt outStart, bitLenInt length, const std::vector< bitLenInt > &controls)
Inverse of controlled multiplication modulo N by integer, (out of place)
Definition: arithmetic.cpp:239
virtual void X(bitLenInt qubit)
X gate.
Definition: qinterface.hpp:1066
virtual void PhaseParity(real1_f radians, const bitCapInt &mask)
Parity phase gate.
Definition: gates.cpp:402
virtual void U(bitLenInt target, real1_f theta, real1_f phi, real1_f lambda)
General unitary gate.
Definition: rotational.cpp:18
virtual bool M(bitLenInt qubit)
Measurement gate.
Definition: qinterface.hpp:995
virtual void ISqrtSwap(bitLenInt qubit1, bitLenInt qubit2)
Inverse square root of Swap gate.
Definition: gates.cpp:225
virtual void FSim(real1_f theta, real1_f phi, bitLenInt qubit1, bitLenInt qubit2)=0
The 2-qubit "fSim" gate, (useful in the simulation of particles with fermionic statistics)
virtual void IISwap(bitLenInt qubit1, bitLenInt qubit2)
Inverse ISwap - Swap values of two bits in register, and apply phase factor of -i if bits are differe...
Definition: gates.cpp:190
virtual void ISwap(bitLenInt qubit1, bitLenInt qubit2)
Swap values of two bits in register, and apply phase factor of i if bits are different.
Definition: gates.cpp:178
virtual void SqrtSwap(bitLenInt qubit1, bitLenInt qubit2)
Square root of Swap gate.
Definition: gates.cpp:202
virtual void Swap(bitLenInt qubit1, bitLenInt qubit2)
Swap values of two bits in register.
Definition: gates.cpp:167
virtual void Finish()
If asynchronous work is still running, block until it finishes.
Definition: qinterface.hpp:2813
virtual void NormalizeState(real1_f nrm=REAL1_DEFAULT_ARG, real1_f norm_thresh=REAL1_DEFAULT_ARG, real1_f phaseArg=ZERO_R1_F)=0
Apply the normalization factor found by UpdateRunningNorm() or on the fly by a single bit gate.
GLOSSARY: bitLenInt - "bit-length integer" - unsigned integer ID of qubit position in register bitCap...
Definition: complex16x2simd.hpp:25
std::shared_ptr< QEngine > QEnginePtr
Definition: qrack_types.hpp:147
std::shared_ptr< QInterface > QInterfacePtr
Definition: qinterface.hpp:29
std::complex< real1 > complex
Definition: qrack_types.hpp:124
double norm(const complex2 &c)
Definition: complex16x2simd.hpp:101
QRACK_CONST real1 REAL1_EPSILON
Definition: qrack_types.hpp:187
QRACK_CONST complex ONE_CMPLX
Definition: qrack_types.hpp:239
QRACK_CONST real1 ONE_R1
Definition: qrack_types.hpp:176
float real1_f
Definition: qrack_types.hpp:91
QRACK_CONST real1 PI_R1
Definition: qrack_types.hpp:170
const bitCapInt ZERO_BCI
Definition: qrack_types.hpp:126
bitCapIntOcl pow2Ocl(const bitLenInt &p)
Definition: qrack_functions.hpp:115
#define IS_SAME(c1, c2)
Definition: qrack_types.hpp:26
#define bitsInByte
Definition: qrack_types.hpp:150
#define REAL1_DEFAULT_ARG
Definition: qrack_types.hpp:169
#define bitLenInt
Definition: qrack_types.hpp:38
#define qrack_rand_gen_ptr
Definition: qrack_types.hpp:152
#define bitCapInt
Definition: qrack_types.hpp:62
#define bitCapIntOcl
Definition: qrack_types.hpp:50
#define IS_NORM_0(c)
Definition: qrack_types.hpp:25