cirq.sample

Simulates sampling from the given circuit.

Used in the notebooks

Used in the tutorials

program The circuit to sample from.
noise Noise model to use while running the simulation.
param_resolver Parameters to run with the program.
repetitions The number of samples to take.
dtype The numpy.dtype used by the simulation. Typically one of numpy.complex64 or numpy.complex128. Favors speed over precision by default, i.e. uses numpy.complex64.
seed The random seed to use for this simulator.

A cirq.Result object containing the requested measurement samples.