Template Function Pennylane::LightningGPU::cuGates::getRot(U, U, U)¶
Defined in File cuGates_host.hpp
Function Documentation¶
-
template<class CFP_t, class U = double>
static auto Pennylane::LightningGPU::cuGates::getRot(U phi, U theta, U omega) -> std::vector<CFP_t>¶ Create a matrix representation of the Rot gate data in row-major format.
The gate is defined as: \(\begin{split}Rot(\phi,\theta,\omega) = RZ(\omega)RY(\theta)RZ(\phi)= \begin{bmatrix} e^{-i(\phi+\omega)/2}\cos(\theta/2) & -e^{i(\phi-\omega)/2}\sin(\theta/2) \\ e^{-i(\phi-\omega)/2}\sin(\theta/2) & e^{i(\phi+\omega)/2}\cos(\theta/2) \end{bmatrix}.\end{split}\)
- Template Parameters
CFP_t – Required precision of gate (
float
ordouble
).U – Required precision of parameter (
float
ordouble
).
- Parameters
phi – \(\phi\) shift angle.
theta – \(\theta\) shift angle.
omega – \(\omega\) shift angle.
- Returns
std::vector<CFP_t> Return Rot gate data.
api/function_cuGates__host_8hpp_1a111b8638df3347ed7e788fddd75dc0ac
Download Python script
Download Notebook
View on GitHub