cirq.Simulator¶
-
class
cirq.Simulator(dtype=<class 'numpy.complex64'>)[source]¶ A sparse matrix wave function simulator that uses numpy.
This simulator can be applied on circuits that are made up of operationsthat have a_unitary_method, or_has_unitary_and_apply_unitary_methods, or else a_decompose_method thatreturns operations satisfying these same conditions. That is to say,the operations should follow thecirq.SupportsApplyUnitaryprotocol, thecirq.SupportsUnitaryprotocol, or thecirq.CompositeOperationprotocol. (It is also permitted for the circuitto contain measurements.)This simulator supports three types of simulation.
Run simulations which mimic running on actual quantum hardware. Thesesimulations do not give access to the wave function (like actual hardware).There are two variations of run methods, one which takes in a single(optional) way to resolve parameterized circuits, and a second whichtakes in a list or sweep of parameter resolver:run(circuit, param_resolver, repetitions) run_sweep(circuit, params, repetitions)
The simulation performs optimizations if the number of repetitions isgreater than one and all measurements in the circuit are terminal (at theend of the circuit). These methods returnTrialResults which contain boththe measurement results, but also the parameters used for the parameterizedcircuit operations. The initial state of a run is always the all 0s statein the computational basis.By contrast the simulate methods of the simulator give access to thewave function of the simulation at the end of the simulation of the circuit.These methods take in two parameters that the run methods do not: aqubit order and an initial state. The qubit order is necessary because anordering must be chosen for the kronecker product (seeSimulationTrialResultfor details of this ordering). The initial statecan be either the full wave function, or an integer which representsthe initial state of being in a computational basis state for the binaryrepresentation of that integer. Similar to run methods, there are twosimulate methods that run for single runs or for sweeps across differentParameters: - simulate (circuit, param_resolver, qubit_order, initial_state) –
- simulate_sweep (circuit, params, qubit_order, initial_state) –
The simulate methods in contrast to the run methods do not perform repetitions. The result of these simulations is a SimulationTrialResult which contains in addition to measurement results and information about the parameters that were used in the simulation access to the state viat the final_state method.
Finally if one wishes to perform simulations that have access to the wave function as one steps through running the circuit there is a generator which can be iterated over and each step is an object that gives access to the wave function. This stepping through a Circuit is done on a Moment by Moment manner.
- simulate_moment_steps(circuit, param_resolver, qubit_order,
- initial_state)
One can iterate over the moments via
- for step_result in simulate_moments(circuit):
- # do something with the wave function via step_result.state
See Simulator for the definitions of the supported methods.
-
__init__(dtype=<class 'numpy.complex64'>)[source]¶ A sparse matrix simulator.
Parameters: - dtype – The numpy.dtype used by the simulation. One of
- or numpy.complex128 (numpy.complex64) –
Methods
run(circuit, param_resolver, repetitions)Runs the entire supplied Circuit, mimicking the quantum hardware. run_sweep(program, …)Runs the entire supplied Circuit, mimicking the quantum hardware. simulate(circuit, param_resolver, …)Simulates the entire supplied Circuit. simulate_moment_steps(circuit, …)Returns an iterator of StepResults for each moment simulated. simulate_sweep(program, …)Simulates the entire supplied Circuit.