StrawberryFieldsRemote¶
- 
class 
StrawberryFieldsRemote(*, backend, wires=None, cutoff_dim=5, shots=1000, hbar=2, sf_token=None)[source]¶ Bases:
pennylane_sf.simulator.StrawberryFieldsSimulatorStrawberryFields remote device for PennyLane.
A valid Strawberry Fields API token is needed for access. This token can be passed when creating the device. The default configuration options of Strawberry Fields are used to store the authentication token in a configuration file.
- Parameters
 backend (str) – name of the remote backend to be used
wires (Iterable[Number, str]) – Iterable that contains unique labels for the modes as numbers or strings (i.e.,
['m1', ..., 'm4', 'n1',...,'n4']). The number of labels must match the number of modes accessible on the backend. If not provided, modes are addressed as consecutive integers[0, 1, ...], and their number is inferred from the backend.cutoff_dim (int) – Fock-space truncation dimension
shots (int) – number of circuit evaluations/random samples used to estimate expectation values of observables
hbar (float) – the convention chosen in the canonical commutation relation \([x, p] = i \hbar\)
sf_token (str) – the SF API token used for remote access
Attributes
Whether shots is None or not.
Number of times this device is executed by the evaluation of QNodes running on this device
The observables to be measured and returned.
Get the supported set of observables.
The operation queue to be applied.
Get the supported set of operations.
Mapping from free parameter index to the list of
Operationsin the device queue that depend on it.Returns the shot vector, a sparse representation of the shot sequence used by the device when evaluating QNodes.
Number of circuit evaluations/random samples used to estimate expectation values of observables
Returns the stopping condition for the device.
Ordered dictionary that defines the map from user-provided wire labels to the wire labels used on this device
All wires that can be addressed on this device
- 
analytic¶ Whether shots is None or not. Kept for backwards compatability.
- 
name= 'Strawberry Fields Hardware PennyLane plugin'¶ 
- 
num_executions¶ Number of times this device is executed by the evaluation of QNodes running on this device
- Returns
 number of executions
- Return type
 int
- 
obs_queue¶ The observables to be measured and returned.
Note that this property can only be accessed within the execution context of
execute().- Raises
 ValueError – if outside of the execution context
- Returns
 list[~.operation.Observable]
- 
observables¶ Get the supported set of observables.
- Returns
 the set of PennyLane observable names the device supports
- Return type
 set[str]
- 
op_queue¶ The operation queue to be applied.
Note that this property can only be accessed within the execution context of
execute().- Raises
 ValueError – if outside of the execution context
- Returns
 list[~.operation.Operation]
- 
operations¶ Get the supported set of operations.
- Returns
 the set of PennyLane operation names the device supports
- Return type
 set[str]
- 
parameters¶ Mapping from free parameter index to the list of
Operationsin the device queue that depend on it.Note that this property can only be accessed within the execution context of
execute().- Raises
 ValueError – if outside of the execution context
- Returns
 the mapping
- Return type
 dict[int->list[ParameterDependency]]
- 
pennylane_requires= '>=0.15.0'¶ 
- 
short_name= 'strawberryfields.remote'¶ 
- 
shot_vector¶ Returns the shot vector, a sparse representation of the shot sequence used by the device when evaluating QNodes.
Example
>>> dev = qml.device("default.qubit", wires=2, shots=[3, 1, 2, 2, 2, 2, 6, 1, 1, 5, 12, 10, 10]) >>> dev.shots 57 >>> dev.shot_vector [ShotTuple(shots=3, copies=1), ShotTuple(shots=1, copies=1), ShotTuple(shots=2, copies=4), ShotTuple(shots=6, copies=1), ShotTuple(shots=1, copies=2), ShotTuple(shots=5, copies=1), ShotTuple(shots=12, copies=1), ShotTuple(shots=10, copies=2)]
The sparse representation of the shot sequence is returned, where tuples indicate the number of times a shot integer is repeated.
- Type
 list[ShotTuple[int, int]]
- 
shots¶ Number of circuit evaluations/random samples used to estimate expectation values of observables
- 
stopping_condition¶ Returns the stopping condition for the device. The returned function accepts a queuable object (including a PennyLane operation and observable) and returns
Trueif supported by the device.- Type
 BooleanFn
- 
version= '0.29.1'¶ 
- 
wire_map¶ Ordered dictionary that defines the map from user-provided wire labels to the wire labels used on this device
- 
wires¶ All wires that can be addressed on this device
Methods
apply(operation, wires, par)Apply a quantum operation.
batch_execute(circuits)Execute a batch of quantum circuits on the device.
batch_transform(circuit)Apply a differentiable batch transform for preprocessing a circuit prior to execution.
Get the capabilities of this device class.
check_validity(queue, observables)Checks whether the operations and observables in queue are all supported by the device.
custom_expand(fn)Register a custom expansion function for the device.
default_expand_fn(circuit[, max_expansion])Method for expanding or decomposing an input circuit.
define_wire_map(wires)Create the map from user-provided wire labels to the wire labels used by the device.
execute(queue, observables[, parameters])Execute a queue of quantum operations on the device and then measure the given observables.
execute_and_gradients(circuits[, method])Execute a batch of quantum circuits on the device, and return both the results and the gradients.
Initialize the engine
expand_fn(circuit[, max_expansion])Method for expanding or decomposing an input circuit.
expval(observable, wires, par)Evaluate the expectation of an observable.
gradients(circuits[, method])Return the gradients of a batch of quantum circuits on the device.
map_wires(wires)Map the wire labels of wires using this device’s wire map.
order_wires(subset_wires)Given some subset of device wires return a Wires object with the same wires; sorted according to the device wire map.
Called during
execute()after the individual operations have been executed.Called during
execute()after the individual observables have been measured.Called during
execute()before the individual operations are executed.Run the engine
probability([wires])Return the (marginal) probability of each computational basis state from the last run of the device.
reset()Reset the device
sample(observable, wires, par)Return a sample of an observable.
supports_observable(observable)Checks if an observable is supported by this device. Raises a ValueError,
supports_operation(operation)Checks if an operation is supported by this device.
var(observable, wires, par)Evaluate the variance of an observable.
- 
apply(operation, wires, par)¶ Apply a quantum operation.
- Parameters
 operation (str) – name of the operation
wires (Wires) – subsystems the operation is applied on
par (tuple) – parameters for the operation
- 
batch_execute(circuits)¶ Execute a batch of quantum circuits on the device.
The circuits are represented by tapes, and they are executed one-by-one using the device’s
executemethod. The results are collected in a list.For plugin developers: This function should be overwritten if the device can efficiently run multiple circuits on a backend, for example using parallel and/or asynchronous executions.
- Parameters
 circuits (list[tape.QuantumTape]) – circuits to execute on the device
- Returns
 list of measured value(s)
- Return type
 list[array[float]]
- 
batch_transform(circuit: pennylane.tape.tape.QuantumTape)¶ Apply a differentiable batch transform for preprocessing a circuit prior to execution. This method is called directly by the QNode, and should be overwritten if the device requires a transform that generates multiple circuits prior to execution.
By default, this method contains logic for generating multiple circuits, one per term, of a circuit that terminates in
expval(H), if the underlying device does not support Hamiltonian expectation values, or if the device requires finite shots.Warning
This method will be tracked by autodifferentiation libraries, such as Autograd, JAX, TensorFlow, and Torch. Please make sure to use
qml.mathfor autodiff-agnostic tensor processing if required.- Parameters
 circuit (QuantumTape) – the circuit to preprocess
- Returns
 Returns a tuple containing the sequence of circuits to be executed, and a post-processing function to be applied to the list of evaluated circuit results.
- Return type
 tuple[Sequence[QuantumTape], callable]
- 
classmethod 
capabilities()¶ Get the capabilities of this device class.
Inheriting classes that change or add capabilities must override this method, for example via
@classmethod def capabilities(cls): capabilities = super().capabilities().copy() capabilities.update( supports_a_new_capability=True, ) return capabilities
- Returns
 results
- Return type
 dict[str->*]
- 
check_validity(queue, observables)¶ Checks whether the operations and observables in queue are all supported by the device.
- Parameters
 queue (Iterable[Operation]) – quantum operation objects which are intended to be applied on the device
observables (Iterable[Observable]) – observables which are intended to be evaluated on the device
- Raises
 DeviceError – if there are operations in the queue or observables that the device does not support
- 
custom_expand(fn)¶ Register a custom expansion function for the device.
Example
dev = qml.device("default.qubit", wires=2) @dev.custom_expand def my_expansion_function(self, tape, max_expansion=10): ... # can optionally call the default device expansion tape = self.default_expand_fn(tape, max_expansion=max_expansion) return tape
The custom device expansion function must have arguments
self(the device object),tape(the input circuit to transform and execute), andmax_expansion(the number of times the circuit should be expanded).The default
default_expand_fn()method of the original device may be called. It is highly recommended to call this before returning, to ensure that the expanded circuit is supported on the device.
- 
default_expand_fn(circuit, max_expansion=10)¶ Method for expanding or decomposing an input circuit. This method should be overwritten if custom expansion logic is required.
By default, this method expands the tape if:
nested tapes are present,
any operations are not supported on the device, or
multiple observables are measured on the same wire.
- Parameters
 circuit (QuantumTape) – the circuit to expand.
max_expansion (int) – The number of times the circuit should be expanded. Expansion occurs when an operation or measurement is not supported, and results in a gate decomposition. If any operations in the decomposition remain unsupported by the device, another expansion occurs.
- Returns
 The expanded/decomposed circuit, such that the device will natively support all operations.
- Return type
 QuantumTape
- 
define_wire_map(wires)¶ Create the map from user-provided wire labels to the wire labels used by the device.
The default wire map maps the user wire labels to wire labels that are consecutive integers.
However, by overwriting this function, devices can specify their preferred, non-consecutive and/or non-integer wire labels.
- Parameters
 wires (Wires) – user-provided wires for this device
- Returns
 dictionary specifying the wire map
- Return type
 OrderedDict
Example
>>> dev = device('my.device', wires=['b', 'a']) >>> dev.wire_map() OrderedDict( [(<Wires = ['a']>, <Wires = [0]>), (<Wires = ['b']>, <Wires = [1]>)])
- 
execute(queue, observables, parameters=None, **kwargs)¶ Execute a queue of quantum operations on the device and then measure the given observables.
For plugin developers: Instead of overwriting this, consider implementing a suitable subset of
pre_apply(),apply(),post_apply(),pre_measure(),expval(),var(),sample(),post_measure(), andexecution_context().- Parameters
 queue (Iterable[Operation]) – operations to execute on the device
observables (Iterable[Observable]) – observables to measure and return
parameters (dict[int, list[ParameterDependency]]) – Mapping from free parameter index to the list of
Operations(in the queue) that depend on it.
- Keyword Arguments
 return_native_type (bool) – If True, return the result in whatever type the device uses internally, otherwise convert it into array[float]. Default: False.
- Raises
 QuantumFunctionError – if the value of
return_typeis not supported- Returns
 measured value(s)
- Return type
 array[float]
- 
execute_and_gradients(circuits, method='jacobian', **kwargs)¶ Execute a batch of quantum circuits on the device, and return both the results and the gradients.
The circuits are represented by tapes, and they are executed one-by-one using the device’s
executemethod. The results and the corresponding Jacobians are collected in a list.For plugin developers: This method should be overwritten if the device can efficiently run multiple circuits on a backend, for example using parallel and/or asynchronous executions, and return both the results and the Jacobians.
- Parameters
 circuits (list[tape.QuantumTape]) – circuits to execute on the device
method (str) – the device method to call to compute the Jacobian of a single circuit
**kwargs – keyword argument to pass when calling
method
- Returns
 Tuple containing list of measured value(s) and list of Jacobians. Returned Jacobians should be of shape
(output_shape, num_params).- Return type
 tuple[list[array[float]], list[array[float]]]
- 
execution_context()¶ Initialize the engine
- 
expand_fn(circuit, max_expansion=10)¶ Method for expanding or decomposing an input circuit. Can be the default or a custom expansion method, see
Device.default_expand_fn()andDevice.custom_expand()for more details.- Parameters
 circuit (QuantumTape) – the circuit to expand.
max_expansion (int) – The number of times the circuit should be expanded. Expansion occurs when an operation or measurement is not supported, and results in a gate decomposition. If any operations in the decomposition remain unsupported by the device, another expansion occurs.
- Returns
 The expanded/decomposed circuit, such that the device will natively support all operations.
- Return type
 QuantumTape
- 
expval(observable, wires, par)[source]¶ Evaluate the expectation of an observable.
- Parameters
 observable (str) – name of the observable
wires (Wires) – subsystems the observable is evaluated on
par (tuple) – parameters for the observable
- Returns
 expectation value
- Return type
 float
- 
gradients(circuits, method='jacobian', **kwargs)¶ Return the gradients of a batch of quantum circuits on the device.
The gradient method
methodis called sequentially for each circuit, and the corresponding Jacobians are collected in a list.For plugin developers: This method should be overwritten if the device can efficiently compute the gradient of multiple circuits on a backend, for example using parallel and/or asynchronous executions.
- Parameters
 circuits (list[tape.QuantumTape]) – circuits to execute on the device
method (str) – the device method to call to compute the Jacobian of a single circuit
**kwargs – keyword argument to pass when calling
method
- Returns
 List of Jacobians. Returned Jacobians should be of shape
(output_shape, num_params).- Return type
 list[array[float]]
- 
map_wires(wires)¶ Map the wire labels of wires using this device’s wire map.
- Parameters
 wires (Wires) – wires whose labels we want to map to the device’s internal labelling scheme
- Returns
 wires with new labels
- Return type
 Wires
- 
order_wires(subset_wires)¶ Given some subset of device wires return a Wires object with the same wires; sorted according to the device wire map.
- Parameters
 subset_wires (Wires) – The subset of device wires (in any order).
- Raises
 ValueError – Could not find some or all subset wires subset_wires in device wires device_wires.
- Returns
 a new Wires object containing the re-ordered wires set
- Return type
 ordered_wires (Wires)
- 
probability(wires=None)[source]¶ Return the (marginal) probability of each computational basis state from the last run of the device.
- Parameters
 wires (Iterable[Number, str], Number, str, Wires) – wires to return marginal probabilities for. Wires not provided are traced out of the system.
- Returns
 Dictionary mapping a tuple representing the state to the resulting probability. The dictionary should be sorted such that the state tuples are in lexicographical order.
- Return type
 OrderedDict[tuple, float]
- 
sample(observable, wires, par)[source]¶ Return a sample of an observable.
The number of samples is determined by the value of
Device.shots, which can be directly modified.Note: all arguments support _lists_, which indicate a tensor product of observables.
- Parameters
 observable (str or list[str]) – name of the observable(s)
wires (Wires) – wires the observable(s) is to be measured on
par (tuple or list[tuple]]) – parameters for the observable(s)
- Raises
 NotImplementedError – if the device does not support sampling
- Returns
 samples in an array of dimension
(shots,)- Return type
 array[float]
- 
supports_observable(observable)¶ - Checks if an observable is supported by this device. Raises a ValueError,
 if not a subclass or string of an Observable was passed.
- Parameters
 observable (type or str) – observable to be checked
- Raises
 ValueError – if observable is not a
Observableclass or string- Returns
 Trueiff supplied observable is supported- Return type
 bool
- 
supports_operation(operation)¶ Checks if an operation is supported by this device.
- Parameters
 operation (type or str) – operation to be checked
- Raises
 ValueError – if operation is not a
Operationclass or string- Returns
 Trueif supplied operation is supported- Return type
 bool