Uses of Class
com.quantum4j.core.backend.RunOptions
Packages that use RunOptions
Package
Description
Execution backends for Quantum4J.
Circuit representation for Quantum4J, including
QuantumCircuit and
Instruction.-
Uses of RunOptions in com.quantum4j.core.backend
Methods in com.quantum4j.core.backend that return RunOptionsModifier and TypeMethodDescriptionQuantumExecutionContext.getOptions()static RunOptionsRunOptions.shots(int shots) Create RunOptions with the specified number of shots.static RunOptionsRunOptions.withBackend(BackendType type) Create RunOptions selecting a backend.RunOptions.withShots(int shots) Set the number of shots for this execution.Methods in com.quantum4j.core.backend with parameters of type RunOptionsModifier and TypeMethodDescriptionBackend.run(QuantumCircuit circuit, RunOptions options) Execute the given circuit with options.StateVectorBackend.run(QuantumCircuit circuit, RunOptions options) Execute a quantum circuit on this state-vector backend.Constructors in com.quantum4j.core.backend with parameters of type RunOptionsModifierConstructorDescriptionQuantumExecutionContext(QuantumCircuit circuit, RunOptions options) -
Uses of RunOptions in com.quantum4j.core.backend.hardware
Methods in com.quantum4j.core.backend.hardware with parameters of type RunOptionsModifier and TypeMethodDescriptionIonQBackend.run(QuantumCircuit circuit, RunOptions options) HardwareBackend.toVendorPayload(String qasm, RunOptions options) Convert a QASM program into a vendor-specific payload.IonQBackend.toVendorPayload(String qasm, RunOptions options) -
Uses of RunOptions in com.quantum4j.core.circuit
Methods in com.quantum4j.core.circuit with parameters of type RunOptionsModifier and TypeMethodDescriptionQuantumCircuit.run(RunOptions options) Execute this circuit with the given options using the configured backend.