gates
Gates.
Gate
Source code in jaxquantum/circuits/gates.py
14 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 |
|
create(dims, name='Gate', params=None, ts=None, gen_U=None, gen_H=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_H
|
Optional[Callable[[Dict[str, Any]], Qarray]]
|
Function to generate the Hamiltonian of the gate. |
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
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 |
|