cirq_rigetti.circuit_sweep_executors.with_quilc_compilation_and_cirq_parameter_resolution

This CircuitSweepExecutor will first resolve each resolver in resolvers using cirq.protocols.resolve_parameters and then compile that resolved cirq.Circuit into native Quil using quilc.

This executor may be useful if with_quilc_parametric_compilation fails to properly resolve a parameterized cirq.Circuit.

quantum_computer The pyquil.api.QuantumComputer against which to execute the circuit.
circuit The cirq.Circuit to transform into a pyquil.Program and executed on the quantum_computer.
resolvers A sequence of parameter resolvers that cirq.protocols.resolve_parameters will use to fully resolve the circuit.
repetitions Number of times to run each iteration through the resolvers. For a given resolver, the cirq.Result will include a measurement for each repetition.
transformer A callable that transforms the cirq.Circuit into a pyquil.Program. You may pass your own callable or any function from cirq_rigetti.circuit_transformers.

A list of cirq.Result, each corresponding to a resolver in resolvers.