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

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

Functions

void syncCompMatr (CompMatr matr)
 
void syncDiagMatr (DiagMatr matr)
 
void syncFullStateDiagMatr (FullStateDiagMatr matr)
 

Detailed Description

Functions for overwriting a matrix'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 matrix (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

◆ syncCompMatr()

void syncCompMatr ( CompMatr matr)
Note
Documentation for this function or struct is under construction!

Definition at line 377 of file matrices.cpp.

377{ validateAndSyncMatrix(matr, __func__); }

Referenced by TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), and toComplexMatrixN().

◆ syncDiagMatr()

void syncDiagMatr ( DiagMatr matr)
Note
Documentation for this function or struct is under construction!

Definition at line 378 of file matrices.cpp.

378{ validateAndSyncMatrix(matr, __func__); }

Referenced by setDiagMatr(), setDiagMatrFromMultiDimLists(), setDiagMatrFromMultiVarFunc(), TEST_CASE(), TEST_CASE(), and TEST_CASE().

◆ syncFullStateDiagMatr()

void syncFullStateDiagMatr ( FullStateDiagMatr matr)
Note
Documentation for this function or struct is under construction!

Definition at line 379 of file matrices.cpp.

379{ validateAndSyncMatrix(matr, __func__); }

Referenced by setFullStateDiagMatrFromMultiDimLists(), and setFullStateDiagMatrFromMultiVarFunc().