![]() |
Creates a WaitGate applied to all the given qubits.
cirq.ops.wait(
*target,
duration: "cirq.DURATION_LIKE" = None,
picos: Union[int, float, sympy.Basic] = 0,
nanos: Union[int, float, sympy.Basic] = 0,
micros: Union[int, float, sympy.Basic] = 0,
millis: Union[int, float, sympy.Basic] = 0
) -> cirq.ops.Operation
The duration can be specified as a DURATION_LIKE or using keyword args with numbers in the appropriate units. See Duration for details.
Args | |
---|---|
*target
|
The qubits that should wait. |
value
|
Wait duration (see Duration). |
picos
|
Picoseconds to wait (see Duration). |
nanos
|
Picoseconds to wait (see Duration). |
micros
|
Picoseconds to wait (see Duration). |
millis
|
Picoseconds to wait (see Duration). |