The Quantum Exact Simulation Toolkit v4.0.0
Loading...
Searching...
No Matches
qureg.h
1/** @file
2 * API signatures for creating and managing Quregs.
3 *
4 * @author Tyson Jones
5 *
6 * @defgroup qureg Qureg
7 * @ingroup api
8 * @brief Data structures for representing quantum states.
9 * @{
10 */
11
12#ifndef QUREG_H
13#define QUREG_H
14
15#include "quest/include/types.h"
16
17
18
19/*
20 * These signatures are divided into two partitions; those which are
21 * natively C and C++ compatible (first partition) and those which are
22 * only exposed to C++ (second partition) because they return 'qcomp'
23 * which cannot cross the C++-to-C ABI. The first partition defines the
24 * doc groups, and the second partition functions are added into them.
25 */
26
27// enable invocation by both C and C++ binaries
28#ifdef __cplusplus
29extern "C" {
30#endif
31
32
33
34/**
35 * @defgroup qureg_structs Structs
36 * @brief Data structures for representing quantum registers.
37 * @{
38 */
39
40
41/// @notdoced
42typedef struct {
43
44 // deployment configuration
45 int isMultithreaded;
46 int isGpuAccelerated;
47 int isDistributed;
48
49 // distributed configuration
50 int rank;
51 int numNodes;
52 int logNumNodes;
53
54 // dimension
55 int isDensityMatrix;
56 int numQubits;
57 qindex numAmps;
58 qindex logNumAmps;
59
60 // distributed load
61 qindex numAmpsPerNode;
62 qindex logNumAmpsPerNode;
63 qindex logNumColsPerNode;
64
65 // amplitudes in CPU and GPU memory
66 qcomp* cpuAmps;
67 qcomp* gpuAmps;
68
69 // communication buffer in CPU and GPU memory
70 qcomp* cpuCommBuffer;
71 qcomp* gpuCommBuffer;
72
73} Qureg;
74
75/** @} */
76
77
78
79/**
80 * @defgroup qureg_create Constructors
81 * @brief Functions for creating statevectors and density matrices.
82 * @{
83 */
84
85
86/// @notdoced
87Qureg createQureg(int numQubits);
88
89
90/// @notdoced
91Qureg createDensityQureg(int numQubits);
92
93
94/// @notdoced
95Qureg createForcedQureg(int numQubits);
96
97
98/// @notdoced
99Qureg createForcedDensityQureg(int numQubits);
100
101
102/// @notdoced
103Qureg createCustomQureg(int numQubits, int isDensMatr, int useDistrib, int useGpuAccel, int useMultithread);
104
105
106/// @notdoced
108
109
110/** @} */
111
112
113
114/**
115 * @defgroup qureg_destroy Destructors
116 * @brief Functions for destroying existing Qureg.
117 * @{
118 */
119
120
121/// @notdoced
122void destroyQureg(Qureg qureg);
123
124
125/** @} */
126
127
128
129/**
130 * @defgroup qureg_report Reporters
131 * @brief Functions for printing Qureg states or reporting their configuration.
132 * @{
133 */
134
135
136/// @notdoced
137/// @nottested
138void reportQuregParams(Qureg qureg);
139
140
141/// @notdoced
142/// @nottested
143void reportQureg(Qureg qureg);
144
145
146/** @} */
147
148
149
150/**
151 * @defgroup qureg_sync Synchronisation
152 * @brief Functions for copying memory between a Qureg's CPU (RAM) and GPU (VRAM) memory.
153 * @details These functions are only necessary when the user wishes to manually probe or
154 * modify the Qureg amplitudes (rather than use functions like getQuregAmps() and
155 * setQuregAmps()), to ensure that the CPU and GPU copies of the Qureg are identical.
156 * These functions have no effect when running without GPU-acceleration, but remain
157 * legal and harmless to call, to achieve platform agnosticism.
158 * @{
159 */
160
161
162/// @notdoced
163/// @nottested
164void syncQuregToGpu(Qureg qureg);
165
166
167/// @notdoced
168/// @nottested
169void syncQuregFromGpu(Qureg qureg);
170
171
172/// @notdoced
173/// @nottested
174void syncSubQuregToGpu(Qureg qureg, qindex localStartInd, qindex numLocalAmps);
175
176
177/// @notdoced
178/// @nottested
179void syncSubQuregFromGpu(Qureg qureg, qindex localStartInd, qindex numLocalAmps);
180
181
182/** @} */
183
184
185
186/**
187 * @defgroup qureg_get Getters
188 * @brief Functions for obtaining amplitudes from statevectors or density matrices.
189 * @{
190 */
191
192
193/// @notdoced
194void getQuregAmps(qcomp* outAmps, Qureg qureg, qindex startInd, qindex numAmps);
195
196
197/// @notdoced
198void getDensityQuregAmps(qcomp** outAmps, Qureg qureg, qindex startRow, qindex startCol, qindex numRows, qindex numCols);
199
200
201/** @} */
202
203
204// end de-mangler
205#ifdef __cplusplus
206}
207#endif
208
209
210
211/*
212 * C++ ONLY FUNCTIONS
213 *
214 * which are not directly C-compatible because they pass or
215 * return qcomp primitives by-value (rather than by pointer).
216 * This is prohibited because the C and C++ ABI does not agree
217 * on a complex type, though C's _Complex has the same memory
218 * layout as C++'s std::complex<>. To work around this, the
219 * below functions have a C-compatible wrapper defined in
220 * wrappers.h which passes/receives the primitives by pointer;
221 * a qcomp ptr can be safely passed from the C++ source binary
222 * the user's C binary. These functions use the existing doxygen
223 * doc groups defined above
224 */
225
226
227/// @ingroup qureg_get
228/// @notdoced
229qcomp getQuregAmp(Qureg qureg, qindex index);
230
231
232/// @ingroup qureg_get
233/// @notdoced
234qcomp getDensityQuregAmp(Qureg qureg, qindex row, qindex column);
235
236
237
238/**
239 * @defgroup qureg_setters Setters
240 * @brief See @ref init_amps "Amplitude initialisations".
241 */
242
243
244
245#endif // QUREG_H
246
247/** @} (end doxygen defgroup) */
Qureg createDensityQureg(int numQubits)
Definition qureg.cpp:285
Qureg createForcedQureg(int numQubits)
Definition qureg.cpp:293
Qureg createForcedDensityQureg(int numQubits)
Definition qureg.cpp:303
Qureg createCloneQureg(Qureg qureg)
Definition qureg.cpp:313
Qureg createCustomQureg(int numQubits, int isDensMatr, int useDistrib, int useGpuAccel, int useMultithread)
Definition qureg.cpp:271
Qureg createQureg(int numQubits)
Definition qureg.cpp:277
void destroyQureg(Qureg qureg)
Definition qureg.cpp:328
qcomp getQuregAmp(Qureg qureg, qindex index)
Definition qureg.cpp:483
void getDensityQuregAmps(qcomp **outAmps, Qureg qureg, qindex startRow, qindex startCol, qindex numRows, qindex numCols)
Definition qureg.cpp:455
void getQuregAmps(qcomp *outAmps, Qureg qureg, qindex startInd, qindex numAmps)
Definition qureg.cpp:446
qcomp getDensityQuregAmp(Qureg qureg, qindex row, qindex column)
Definition qureg.cpp:496
void reportQureg(Qureg qureg)
Definition qureg.cpp:369
void reportQuregParams(Qureg qureg)
Definition qureg.cpp:351
void syncQuregFromGpu(Qureg qureg)
Definition qureg.cpp:397
void syncSubQuregToGpu(Qureg qureg, qindex localStartInd, qindex numLocalAmps)
Definition qureg.cpp:406
void syncSubQuregFromGpu(Qureg qureg, qindex localStartInd, qindex numLocalAmps)
Definition qureg.cpp:425
void syncQuregToGpu(Qureg qureg)
Definition qureg.cpp:390
Definition qureg.h:42