![]() |
Creates a WaitGate applied to all the given qubits.
cirq.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.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. |
duration
|
Wait duration (see Duration). |
picos
|
Picoseconds to wait (see Duration). |
nanos
|
Nanoseconds to wait (see Duration). |
micros
|
Microseconds to wait (see Duration). |
millis
|
Milliseconds to wait (see Duration). |