gates
Gates.
Gate
Source code in jaxquantum/circuits/gates.py
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 |
|
add_Ht(Ht)
Add a Hamiltonian function to the gate.
Source code in jaxquantum/circuits/gates.py
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 |
|
add_c_ops(c_ops)
Add a c_ops to the gate.
Source code in jaxquantum/circuits/gates.py
135 136 137 138 139 140 141 142 143 144 145 146 147 |
|
copy()
Return a copy of the gate.
Source code in jaxquantum/circuits/gates.py
149 150 151 152 153 154 155 156 157 158 159 160 161 |
|
create(dims, name='Gate', params=None, ts=None, gen_U=None, gen_Ht=None, gen_c_ops=None, gen_KM=None, num_modes=1)
classmethod
Create a gate.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
dims
|
Union[int, List[int]]
|
Dimensions of the gate. |
required |
name
|
str
|
Name of the gate. |
'Gate'
|
params
|
Optional[Dict[str, Any]]
|
Parameters of the gate. |
None
|
ts
|
Optional[Array]
|
Times of the gate. |
None
|
gen_U
|
Optional[Callable[[Dict[str, Any]], Qarray]]
|
Function to generate the unitary of the gate. |
None
|
gen_Ht
|
Optional[Callable[[Dict[str, Any]], Qarray]]
|
Function to generate a function Ht(t) that takes in a time t and outputs a Hamiltonian Qarray. |
None
|
gen_KM
|
Optional[Callable[[Dict[str, Any]], List[Qarray]]]
|
Function to generate the Kraus map of the gate. |
None
|
num_modes
|
int
|
Number of modes of the gate. |
1
|
Source code in jaxquantum/circuits/gates.py
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
|