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

Functions for applying general many-qubit diagonal matrices, as DiagMatr. More...

Functions

void applyControlledDiagMatr (Qureg, int control, int *targets, int numTargets, DiagMatr matrix)
 
void applyControlledDiagMatrPower (Qureg qureg, int control, int *targets, int numTargets, DiagMatr matrix, qcomp exponent)
 
void applyDiagMatr (Qureg qureg, int *targets, int numTargets, DiagMatr matrix)
 
void applyDiagMatrPower (Qureg qureg, int *targets, int numTargets, DiagMatr matrix, qcomp exponent)
 
void applyMultiControlledDiagMatr (Qureg, int *controls, int numControls, int *targets, int numTargets, DiagMatr matrix)
 
void applyMultiControlledDiagMatrPower (Qureg qureg, int *controls, int numControls, int *targets, int numTargets, DiagMatr matrix, qcomp exponent)
 
void applyMultiStateControlledDiagMatr (Qureg, int *controls, int *states, int numControls, int *targets, int numTargets, DiagMatr matrix)
 
void applyMultiStateControlledDiagMatrPower (Qureg qureg, int *controls, int *states, int numControls, int *targets, int numTargets, DiagMatr matrix, qcomp exponent)
 
void multiplyDiagMatr (Qureg qureg, int *targets, int numTargets, DiagMatr matrix)
 
void multiplyDiagMatrPower (Qureg qureg, int *targets, int numTargets, DiagMatr matrix, qcomp exponent)
 

Detailed Description

Functions for applying general many-qubit diagonal matrices, as DiagMatr.

Function Documentation

◆ applyControlledDiagMatr()

void applyControlledDiagMatr ( Qureg qureg,
int control,
int * targets,
int numTargets,
DiagMatr matrix )
Note
Documentation for this function or struct is under construction!

Definition at line 277 of file operations.cpp.

277 {
278
279 validateAndApplyAnyCtrlAnyTargUnitaryMatrix(qureg, &control, nullptr, 1, targets, numTargets, matrix, __func__);
280}

◆ applyControlledDiagMatrPower()

void applyControlledDiagMatrPower ( Qureg qureg,
int control,
int * targets,
int numTargets,
DiagMatr matrix,
qcomp exponent )
Note
Documentation for this function or struct is under construction!

Definition at line 325 of file operations.cpp.

325 {
326 validate_quregFields(qureg, __func__);
327 validate_controlAndTargets(qureg, control, targets, numTargets, __func__);
328 validate_matrixDimMatchesTargets(matrix, numTargets, __func__); // also checks fields and is-synced
329 validate_matrixIsUnitary(matrix, __func__); // checks abs=1 (so no risk of 0^(-neg exp)) and rechecks fields/synced
330 validate_matrixExpIsNonDiverging(matrix, exponent, __func__); // harmlessly re-validates fields and is-sync
331 validate_unitaryExponentIsReal(exponent, __func__); // checks matrix^exponent is approx unitary (abs=1)
332
333 // notice exponent is a 'qcomp' not a 'qreal' despite validation; see applyMultiStateControlledDiagMatrPower()
334
335 // harmlessly re-validates
336 applyMultiStateControlledDiagMatrPower(qureg, &control, nullptr, 1, targets, numTargets, matrix, exponent);
337}
void applyMultiStateControlledDiagMatrPower(Qureg qureg, int *controls, int *states, int numControls, int *targets, int numTargets, DiagMatr matrix, qcomp exponent)

◆ applyDiagMatr()

void applyDiagMatr ( Qureg qureg,
int * targets,
int numTargets,
DiagMatr matrix )
Note
Documentation for this function or struct is under construction!

Definition at line 272 of file operations.cpp.

272 {
273
274 validateAndApplyAnyCtrlAnyTargUnitaryMatrix(qureg, nullptr, nullptr, 0, targets, numTargets, matrix, __func__);
275}

◆ applyDiagMatrPower()

void applyDiagMatrPower ( Qureg qureg,
int * targets,
int numTargets,
DiagMatr matrix,
qcomp exponent )
Note
Documentation for this function or struct is under construction!

Definition at line 311 of file operations.cpp.

311 {
312 validate_quregFields(qureg, __func__);
313 validate_targets(qureg, targets, numTargets, __func__);
314 validate_matrixDimMatchesTargets(matrix, numTargets, __func__); // also checks fields and is-synced
315 validate_matrixIsUnitary(matrix, __func__); // checks abs=1 (so no risk of 0^(-neg exp)) and rechecks fields/synced
316 validate_matrixExpIsNonDiverging(matrix, exponent, __func__); // harmlessly re-validates fields and is-sync
317 validate_unitaryExponentIsReal(exponent, __func__); // checks matrix^exponent is approx unitary (abs=1)
318
319 // notice exponent is a 'qcomp' not a 'qreal' despite validation; see applyMultiStateControlledDiagMatrPower()
320
321 // harmlessly re-validates
322 applyMultiStateControlledDiagMatrPower(qureg, nullptr, nullptr, 0, targets, numTargets, matrix, exponent);
323}

◆ applyMultiControlledDiagMatr()

void applyMultiControlledDiagMatr ( Qureg qureg,
int * controls,
int numControls,
int * targets,
int numTargets,
DiagMatr matrix )
Note
Documentation for this function or struct is under construction!

Definition at line 282 of file operations.cpp.

282 {
283
284 validateAndApplyAnyCtrlAnyTargUnitaryMatrix(qureg, controls, nullptr, numControls, targets, numTargets, matrix, __func__);
285}

◆ applyMultiControlledDiagMatrPower()

void applyMultiControlledDiagMatrPower ( Qureg qureg,
int * controls,
int numControls,
int * targets,
int numTargets,
DiagMatr matrix,
qcomp exponent )
Note
Documentation for this function or struct is under construction!

Definition at line 339 of file operations.cpp.

339 {
340 validate_quregFields(qureg, __func__);
341 validate_controlsAndTargets(qureg, controls, numControls, targets, numTargets, __func__);
342 validate_matrixDimMatchesTargets(matrix, numTargets, __func__); // also checks fields and is-synced
343 validate_matrixIsUnitary(matrix, __func__); // checks abs=1 (so no risk of 0^(-neg exp)) and rechecks fields/synced
344 validate_matrixExpIsNonDiverging(matrix, exponent, __func__); // harmlessly re-validates fields and is-sync
345 validate_unitaryExponentIsReal(exponent, __func__); // checks matrix^exponent is approx unitary (abs=1)
346
347 // notice exponent is a 'qcomp' not a 'qreal' despite validation; see applyMultiStateControlledDiagMatrPower()
348
349 // harmlessly re-validates
350 applyMultiStateControlledDiagMatrPower(qureg, controls, nullptr, numControls, targets, numTargets, matrix, exponent);
351}

◆ applyMultiStateControlledDiagMatr()

void applyMultiStateControlledDiagMatr ( Qureg qureg,
int * controls,
int * states,
int numControls,
int * targets,
int numTargets,
DiagMatr matrix )
Note
Documentation for this function or struct is under construction!

Definition at line 287 of file operations.cpp.

287 {
288
289 validateAndApplyAnyCtrlAnyTargUnitaryMatrix(qureg, controls, states, numControls, targets, numTargets, matrix, __func__);
290}

◆ applyMultiStateControlledDiagMatrPower()

void applyMultiStateControlledDiagMatrPower ( Qureg qureg,
int * controls,
int * states,
int numControls,
int * targets,
int numTargets,
DiagMatr matrix,
qcomp exponent )
Note
Documentation for this function or struct is under construction!

Definition at line 353 of file operations.cpp.

353 {
354 validate_quregFields(qureg, __func__);
355 validate_controlsAndTargets(qureg, controls, numControls, targets, numTargets, __func__);
356 validate_controlStates(states, numControls, __func__); // can be nullptr, ignoring numControls
357 validate_matrixDimMatchesTargets(matrix, numTargets, __func__); // also checks fields and is-synced
358 validate_matrixIsUnitary(matrix, __func__); // checks abs=1 (so no risk of 0^(-neg exp)) and rechecks fields/synced
359 validate_matrixExpIsNonDiverging(matrix, exponent, __func__); // harmlessly re-validates fields and is-sync
360 validate_unitaryExponentIsReal(exponent, __func__); // checks matrix^exponent is approx unitary (abs=1)
361
362 // unlike calcExpecDiagMatrPower which accepts a 'qreal' exponent,
363 // this function accepts a 'qcomp'. This is because it always
364 // evaluates the relatively numerically unstable pow(qcomp,qcomp)
365 // overload, rather than pow(qreal,qreal), since there is no reason
366 // to think matrix is real (unitarity permits it to be complex).
367 // As such, despite unitarity requiring exponent is also real, we
368 // accept a qcomp types so that complex exponents can be passed
369 // when numerical validation is disabled without a separate func.
370
371 bool conj = false;
372 auto ctrlVec = util_getVector(controls, numControls);
373 auto stateVec = util_getVector(states, numControls); // empty if states==nullptr
374 auto targVec = util_getVector(targets, numTargets);
375 localiser_statevec_anyCtrlAnyTargDiagMatr(qureg, ctrlVec, stateVec, targVec, matrix, exponent, conj);
376
377 if (!qureg.isDensityMatrix)
378 return;
379
380 conj = true;
381 ctrlVec = util_getBraQubits(ctrlVec, qureg);
382 targVec = util_getBraQubits(targVec, qureg);
383 localiser_statevec_anyCtrlAnyTargDiagMatr(qureg, ctrlVec, stateVec, targVec, matrix, exponent, conj);
384}

Referenced by applyControlledDiagMatrPower(), applyDiagMatrPower(), and applyMultiControlledDiagMatrPower().

◆ multiplyDiagMatr()

void multiplyDiagMatr ( Qureg qureg,
int * targets,
int numTargets,
DiagMatr matrix )
Note
Documentation for this function or struct is under construction!

Definition at line 262 of file operations.cpp.

262 {
263 validate_quregFields(qureg, __func__);
264 validate_targets(qureg, targets, numTargets, __func__);
265 validate_matrixDimMatchesTargets(matrix, numTargets, __func__); // also validates fields and is-sync, but not unitarity
266
267 bool conj = false;
268 qcomp exponent = 1;
269 localiser_statevec_anyCtrlAnyTargDiagMatr(qureg, {}, {}, util_getVector(targets, numTargets), matrix, exponent, conj);
270}

◆ multiplyDiagMatrPower()

void multiplyDiagMatrPower ( Qureg qureg,
int * targets,
int numTargets,
DiagMatr matrix,
qcomp exponent )
Note
Documentation for this function or struct is under construction!

Definition at line 301 of file operations.cpp.

301 {
302 validate_quregFields(qureg, __func__);
303 validate_targets(qureg, targets, numTargets, __func__);
304 validate_matrixDimMatchesTargets(matrix, numTargets, __func__); // also validates fields and is-sync, but not unitarity
305 validate_matrixExpIsNonDiverging(matrix, exponent, __func__); // harmlessly re-validates fields and is-sync
306
307 bool conj = false;
308 localiser_statevec_anyCtrlAnyTargDiagMatr(qureg, {}, {}, util_getVector(targets, numTargets), matrix, exponent, conj);
309}