The Quantum Exact Simulation Toolkit v4.0.0
Loading...
Searching...
No Matches
Synchronisation

Functions for overwriting a channel's GPU (VRAM) memory with its CPU (RAM) contents. More...

Functions

void syncKrausMap (KrausMap map)
 
void syncSuperOp (SuperOp op)
 

Detailed Description

Functions for overwriting a channel's GPU (VRAM) memory with its CPU (RAM) contents.

These functions are only necessary when the user wishes to manually modify the elements of a channel (in lieu of using the Setters), to thereafter synchronise the changes to the GPU copy of the channel. These functions have no effect when running without GPU-acceleration, but remain legal and harmless to call (to achieve platform agnosticism).

Function Documentation

◆ syncKrausMap()

void syncKrausMap ( KrausMap map)
Note
Documentation for this function or struct is under construction!

Definition at line 234 of file channels.cpp.

234 {
235 validate_krausMapFields(map, __func__);
236
237 // re-compute and GPU-sync the superoperator from the modified matrices
238 util_setSuperoperator(map.superop.cpuElems, map.matrices, map.numMatrices, map.numQubits);
239 syncSuperOp(map.superop);
240
241 // indicate that we do not know whether the revised map is
242 // is CPTP; we defer establishing that until a CPTP check
243 util_setFlagToUnknown(map.isApproxCPTP);
244}
void syncSuperOp(SuperOp op)
Definition channels.cpp:221

Referenced by TEST_CASE().

◆ syncSuperOp()

void syncSuperOp ( SuperOp op)
Note
Documentation for this function or struct is under construction!

Definition at line 221 of file channels.cpp.

221 {
222 validate_superOpFields(op, __func__);
223
224 // optionally overwrite GPU elements with user-modified CPU elements
225 if (mem_isAllocated(util_getGpuMemPtr(op)))
226 gpu_copyCpuToGpu(op);
227
228 // indicate that the matrix is now permanently GPU synchronised, even
229 // if we are not in GPU-accelerated mode - it hardly matters
230 *(op.wasGpuSynced) = 1;
231}

Referenced by syncKrausMap(), and TEST_CASE().