qml.devices.modifiers.single_tape_support¶
- single_tape_support(cls)[source]¶
Modifies all functions to accept single tapes in addition to batches. This allows the definition of the device class to purely focus on executing batches.
- Parameters
cls (type) – a subclass of
pennylane.devices.Device
- Returns
type: The inputted class that has now been modified to accept single circuits as well as batches.
@single_tape_support class MyDevice(qml.devices.Device): def execute(self, circuits, execution_config = qml.devices.DefaultExecutionConfig): return tuple(0.0 for _ in circuits)
>>> dev = MyDevice() >>> t = qml.tape.QuantumScript() >>> dev.execute(t) 0.0 >>> dev.execute((t, )) (0.0,)
In this situation,
MyDevice.execute
only needs to handle the case wherecircuits
is an iterable ofQuantumTape
objects, not a single value.
code/api/pennylane.devices.modifiers.single_tape_support
Download Python script
Download Notebook
View on GitHub