"`cirq` implements quantum operations through a series of [gates](https://cirq.readthedocs.io/en/stable/gates.html). The standard way to create a quantum circuit is using `Circuit`. If a user wants to add pauses (in time) to a `Circuit` computation they can use identity gates. Alternatively, `cirq` provides `ScheduledOperation` that specifies an operation (application of a gate on one or more qubits) at a certain instant measured in ns or ps from the start of the sequence. A list of `ScheduledOperation` is collated by `Schedule`. Both `Circuit` and `Schedule` can be used in `Simulator` to simulate the circuit. We support both options through two methods: `convert_dds_to_cirq_circuit` and `covert_dds_to_cirq_schedule`.\n",
0 commit comments