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

Functions for applying one-qubit rotations around Pauli and arbitrary axis. More...

Functions

void applyControlledRotateAroundAxis (Qureg qureg, int ctrl, int targ, qreal angle, qreal axisX, qreal axisY, qreal axisZ)
 
void applyControlledRotateX (Qureg qureg, int control, int target, qreal angle)
 
void applyControlledRotateY (Qureg qureg, int control, int target, qreal angle)
 
void applyControlledRotateZ (Qureg qureg, int control, int target, qreal angle)
 
void applyMultiControlledRotateAroundAxis (Qureg qureg, int *ctrls, int numCtrls, int targ, qreal angle, qreal axisX, qreal axisY, qreal axisZ)
 
void applyMultiControlledRotateX (Qureg qureg, int *controls, int numControls, int target, qreal angle)
 
void applyMultiControlledRotateY (Qureg qureg, int *controls, int numControls, int target, qreal angle)
 
void applyMultiControlledRotateZ (Qureg qureg, int *controls, int numControls, int target, qreal angle)
 
void applyMultiStateControlledRotateAroundAxis (Qureg qureg, int *ctrls, int *states, int numCtrls, int targ, qreal angle, qreal axisX, qreal axisY, qreal axisZ)
 
void applyMultiStateControlledRotateX (Qureg qureg, int *controls, int *states, int numControls, int target, qreal angle)
 
void applyMultiStateControlledRotateY (Qureg qureg, int *controls, int *states, int numControls, int target, qreal angle)
 
void applyMultiStateControlledRotateZ (Qureg qureg, int *controls, int *states, int numControls, int target, qreal angle)
 
void applyRotateAroundAxis (Qureg qureg, int targ, qreal angle, qreal axisX, qreal axisY, qreal axisZ)
 
void applyRotateX (Qureg qureg, int target, qreal angle)
 
void applyRotateY (Qureg qureg, int target, qreal angle)
 
void applyRotateZ (Qureg qureg, int target, qreal angle)
 

Detailed Description

Functions for applying one-qubit rotations around Pauli and arbitrary axis.

Function Documentation

◆ applyControlledRotateAroundAxis()

void applyControlledRotateAroundAxis ( Qureg qureg,
int ctrl,
int targ,
qreal angle,
qreal axisX,
qreal axisY,
qreal axisZ )
Note
Documentation for this function or struct is under construction!

Definition at line 1033 of file operations.cpp.

1033 {
1034 validate_quregFields(qureg, __func__);
1035 validate_controlAndTarget(qureg, ctrl, targ, __func__);
1036 validate_rotationAxisNotZeroVector(axisX, axisY, axisZ, __func__);
1037
1038 applyMultiStateControlledRotateAroundAxis(qureg, &ctrl, nullptr, 1, targ, angle, axisX, axisY, axisZ);
1039}
void applyMultiStateControlledRotateAroundAxis(Qureg qureg, int *ctrls, int *states, int numCtrls, int targ, qreal angle, qreal axisX, qreal axisY, qreal axisZ)

◆ applyControlledRotateX()

void applyControlledRotateX ( Qureg qureg,
int control,
int target,
qreal angle )
Note
Documentation for this function or struct is under construction!

Definition at line 944 of file operations.cpp.

944 {
945 validate_quregFields(qureg, __func__);
946 validate_controlAndTarget(qureg, control, target, __func__);
947
948 // harmlessly re-validates
949 applyMultiStateControlledRotateX(qureg, &control, nullptr, 1, target, angle);
950}
void applyMultiStateControlledRotateX(Qureg qureg, int *controls, int *states, int numControls, int target, qreal angle)

◆ applyControlledRotateY()

void applyControlledRotateY ( Qureg qureg,
int control,
int target,
qreal angle )
Note
Documentation for this function or struct is under construction!

Definition at line 952 of file operations.cpp.

952 {
953 validate_quregFields(qureg, __func__);
954 validate_controlAndTarget(qureg, control, target, __func__);
955
956 // harmlessly re-validates
957 applyMultiStateControlledRotateY(qureg, &control, nullptr, 1, target, angle);
958}
void applyMultiStateControlledRotateY(Qureg qureg, int *controls, int *states, int numControls, int target, qreal angle)

◆ applyControlledRotateZ()

void applyControlledRotateZ ( Qureg qureg,
int control,
int target,
qreal angle )
Note
Documentation for this function or struct is under construction!

Definition at line 960 of file operations.cpp.

960 {
961 validate_quregFields(qureg, __func__);
962 validate_controlAndTarget(qureg, control, target, __func__);
963
964 // harmlessly re-validates
965 applyMultiStateControlledRotateZ(qureg, &control, nullptr, 1, target, angle);
966}
void applyMultiStateControlledRotateZ(Qureg qureg, int *controls, int *states, int numControls, int target, qreal angle)

◆ applyMultiControlledRotateAroundAxis()

void applyMultiControlledRotateAroundAxis ( Qureg qureg,
int * ctrls,
int numCtrls,
int targ,
qreal angle,
qreal axisX,
qreal axisY,
qreal axisZ )
Note
Documentation for this function or struct is under construction!

Definition at line 1041 of file operations.cpp.

1041 {
1042 validate_quregFields(qureg, __func__);
1043 validate_controlsAndTarget(qureg, ctrls, numCtrls, targ, __func__);
1044 validate_rotationAxisNotZeroVector(axisX, axisY, axisZ, __func__);
1045
1046 applyMultiStateControlledRotateAroundAxis(qureg, ctrls, nullptr, numCtrls, targ, angle, axisX, axisY, axisZ);
1047}

◆ applyMultiControlledRotateX()

void applyMultiControlledRotateX ( Qureg qureg,
int * controls,
int numControls,
int target,
qreal angle )
Note
Documentation for this function or struct is under construction!

Definition at line 968 of file operations.cpp.

968 {
969 validate_quregFields(qureg, __func__);
970 validate_controlsAndTarget(qureg, controls, numControls, target, __func__);
971
972 // harmlessly re-validates
973 applyMultiStateControlledRotateX(qureg, controls, nullptr, numControls, target, angle);
974}

◆ applyMultiControlledRotateY()

void applyMultiControlledRotateY ( Qureg qureg,
int * controls,
int numControls,
int target,
qreal angle )
Note
Documentation for this function or struct is under construction!

Definition at line 976 of file operations.cpp.

976 {
977 validate_quregFields(qureg, __func__);
978 validate_controlsAndTarget(qureg, controls, numControls, target, __func__);
979
980 // harmlessly re-validates
981 applyMultiStateControlledRotateY(qureg, controls, nullptr, numControls, target, angle);
982}

◆ applyMultiControlledRotateZ()

void applyMultiControlledRotateZ ( Qureg qureg,
int * controls,
int numControls,
int target,
qreal angle )
Note
Documentation for this function or struct is under construction!

Definition at line 984 of file operations.cpp.

984 {
985 validate_quregFields(qureg, __func__);
986 validate_controlsAndTarget(qureg, controls, numControls, target, __func__);
987
988 // harmlessly re-validates
989 applyMultiStateControlledRotateZ(qureg, controls, nullptr, numControls, target, angle);
990}

◆ applyMultiStateControlledRotateAroundAxis()

void applyMultiStateControlledRotateAroundAxis ( Qureg qureg,
int * ctrls,
int * states,
int numCtrls,
int targ,
qreal angle,
qreal axisX,
qreal axisY,
qreal axisZ )
Note
Documentation for this function or struct is under construction!

Definition at line 1049 of file operations.cpp.

1049 {
1050 validate_quregFields(qureg, __func__);
1051 validate_controlsAndTarget(qureg, ctrls, numCtrls, targ, __func__);
1052 validate_controlStates(states, numCtrls, __func__); // permits states==nullptr
1053 validate_rotationAxisNotZeroVector(axisX, axisY, axisZ, __func__);
1054
1055 // defer division of vector norm to improve numerical accuracy
1056 qreal norm = std::sqrt(std::pow(axisX,2) + std::pow(axisY,2) + std::pow(axisZ,2)); // != 0
1057
1058 // treat as generic 1-qubit matrix
1059 qreal c = std::cos(angle/2);
1060 qreal s = std::sin(angle/2);
1061 qcomp u11 = c - (s * axisZ * 1_i) / norm;
1062 qcomp u12 = - (s * (axisY + axisX * 1_i)) / norm;
1063 qcomp u21 = (s * (axisY - axisX * 1_i)) / norm;
1064 qcomp u22 = c + (s * axisZ * 1_i) / norm;
1065 auto matr = getCompMatr1({{u11,u12},{u21,u22}});
1066
1067 // harmlessly re-validates, and checks unitarity of matr
1068 applyMultiStateControlledCompMatr1(qureg, ctrls, states, numCtrls, targ, matr);
1069}
static CompMatr1 getCompMatr1(qcomp **in)
Definition matrices.h:304
void applyMultiStateControlledCompMatr1(Qureg qureg, int *controls, int *states, int numControls, int target, CompMatr1 matrix)

Referenced by applyControlledRotateAroundAxis(), applyMultiControlledRotateAroundAxis(), and applyRotateAroundAxis().

◆ applyMultiStateControlledRotateX()

void applyMultiStateControlledRotateX ( Qureg qureg,
int * controls,
int * states,
int numControls,
int target,
qreal angle )
Note
Documentation for this function or struct is under construction!

Definition at line 992 of file operations.cpp.

992 {
993 validate_quregFields(qureg, __func__);
994 validate_controlsAndTarget(qureg, controls, numControls, target, __func__);
995 validate_controlStates(states, numControls, __func__); // permits states==nullptr
996
997 // harmlessly re-validates
998 applyMultiStateControlledPauliGadget(qureg, controls, states, numControls, getPauliStr("X", {target}), angle);
999}
void applyMultiStateControlledPauliGadget(Qureg qureg, int *controls, int *states, int numControls, PauliStr str, qreal angle)
PauliStr getPauliStr(const char *paulis, int *indices, int numPaulis)
Definition paulis.cpp:296

Referenced by applyControlledRotateX(), applyMultiControlledRotateX(), and applyRotateX().

◆ applyMultiStateControlledRotateY()

void applyMultiStateControlledRotateY ( Qureg qureg,
int * controls,
int * states,
int numControls,
int target,
qreal angle )
Note
Documentation for this function or struct is under construction!

Definition at line 1001 of file operations.cpp.

1001 {
1002 validate_quregFields(qureg, __func__);
1003 validate_controlsAndTarget(qureg, controls, numControls, target, __func__);
1004 validate_controlStates(states, numControls, __func__); // permits states==nullptr
1005
1006 // harmlessly re-validates
1007 applyMultiStateControlledPauliGadget(qureg, controls, states, numControls, getPauliStr("Y", {target}), angle);
1008}

Referenced by applyControlledRotateY(), applyMultiControlledRotateY(), and applyRotateY().

◆ applyMultiStateControlledRotateZ()

void applyMultiStateControlledRotateZ ( Qureg qureg,
int * controls,
int * states,
int numControls,
int target,
qreal angle )
Note
Documentation for this function or struct is under construction!

Definition at line 1010 of file operations.cpp.

1010 {
1011 validate_quregFields(qureg, __func__);
1012 validate_controlsAndTarget(qureg, controls, numControls, target, __func__);
1013 validate_controlStates(states, numControls, __func__); // permits states==nullptr
1014
1015 // harmlessly re-validates
1016 applyMultiStateControlledPauliGadget(qureg, controls, states, numControls, getPauliStr("Z", {target}), angle);
1017}

Referenced by applyControlledRotateZ(), applyMultiControlledRotateZ(), and applyRotateZ().

◆ applyRotateAroundAxis()

void applyRotateAroundAxis ( Qureg qureg,
int targ,
qreal angle,
qreal axisX,
qreal axisY,
qreal axisZ )
Note
Documentation for this function or struct is under construction!

Definition at line 1025 of file operations.cpp.

1025 {
1026 validate_quregFields(qureg, __func__);
1027 validate_target(qureg, targ, __func__);
1028 validate_rotationAxisNotZeroVector(axisX, axisY, axisZ, __func__);
1029
1030 applyMultiStateControlledRotateAroundAxis(qureg, nullptr, nullptr, 0, targ, angle, axisX, axisY, axisZ);
1031}

◆ applyRotateX()

void applyRotateX ( Qureg qureg,
int target,
qreal angle )
Note
Documentation for this function or struct is under construction!

Definition at line 920 of file operations.cpp.

920 {
921 validate_quregFields(qureg, __func__);
922 validate_target(qureg, target, __func__);
923
924 // harmlessly re-validates
925 applyMultiStateControlledRotateX(qureg, nullptr, nullptr, 0, target, angle);
926}

◆ applyRotateY()

void applyRotateY ( Qureg qureg,
int target,
qreal angle )
Note
Documentation for this function or struct is under construction!

Definition at line 928 of file operations.cpp.

928 {
929 validate_quregFields(qureg, __func__);
930 validate_target(qureg, target, __func__);
931
932 // harmlessly re-validates
933 applyMultiStateControlledRotateY(qureg, nullptr, nullptr, 0, target, angle);
934}

◆ applyRotateZ()

void applyRotateZ ( Qureg qureg,
int target,
qreal angle )
Note
Documentation for this function or struct is under construction!

Definition at line 936 of file operations.cpp.

936 {
937 validate_quregFields(qureg, __func__);
938 validate_target(qureg, target, __func__);
939
940 // harmlessly re-validates
941 applyMultiStateControlledRotateZ(qureg, nullptr, nullptr, 0, target, angle);
942}