sf.compilers.TDM¶
-
class
TDM
[source]¶ Bases:
strawberryfields.compilers.compiler.Compiler
General compiler for Time-Domain Multiplexing (TDM) circuits.
Attributes
A rigid circuit template that defines this circuit specification.
The allowed circuit topologies or connectivity of the class, modelled as a directed acyclic graph.
-
circuit
¶ A rigid circuit template that defines this circuit specification.
If arbitrary topologies are allowed in the circuit class, this function will simply return
None
.If a backend device expects a specific template for the received Blackbird script, this method will return the serialized Blackbird circuit in string form.
- Returns
Blackbird circuit or template representing the circuit
- Return type
Union[str, None]
-
decompositions
= {'S2gate': {}}¶
-
graph
¶ The allowed circuit topologies or connectivity of the class, modelled as a directed acyclic graph.
This property is optional; if arbitrary topologies are allowed in the circuit class, this will simply return
None
.- Returns
a directed acyclic graph
- Return type
networkx.DiGraph
-
interactive
= False¶
-
primitives
= {'BSgate', 'MeasureFock', 'MeasureHomodyne', 'Rgate', 'Sgate'}¶
-
short_name
= 'TDM'¶
Methods
add_loss
(program, device)Adds realistic loss to circuit.
compile
(seq, registers)TDM-specific circuit compilation method.
decompose
(seq)Recursively decompose all gates in a given sequence, as allowed by the circuit specification.
init_circuit
(layout)Sets the circuit in the compiler class.
Resets the
circuit
andgraph
class attributes.update_params
(program, device)Updates and checks parameters in the program circuit.
-
add_loss
(program, device)¶ Adds realistic loss to circuit.
Child classes which are hardware compilers should override this method with device specific loss added to the circuit.
-
compile
(seq, registers)[source]¶ TDM-specific circuit compilation method.
Checks that the compilers has access to the program’s circuit layout and, if so, compiles the program using the base compiler.
- Parameters
seq (Sequence[Command]) – quantum circuit to modify
registers (Sequence[RegRefs]) – quantum registers
- Returns
modified circuit
- Return type
List[Command]
- Raises
CircuitError – if the given circuit hasn’t been initialized for this compiler
-
decompose
(seq)¶ Recursively decompose all gates in a given sequence, as allowed by the circuit specification.
This method follows the directives defined in the
primitives
anddecompositions
class attributes to determine whether a command should be decomposed.The order of precedence to determine whether decomposition should be applied is as follows.
First, we check if the operation is in
decompositions
. If not, decomposition is skipped, and the operation is applied as a primitive (if supported by theCompiler
).Next, we check if (a) the operation supports decomposition, and (b) if the user has explicitly requested no decomposition.
If both (a) and (b) are true, the operation is applied as a primitive (if supported by the
Compiler
).Otherwise, we attempt to decompose the operation by calling
decompose()
recursively.
- Parameters
list[strawberryfields.program_utils.Command] – list of commands to be decomposed
- Returns
list of compiled commands for the circuit specification
- Return type
-
classmethod
init_circuit
(layout)¶ Sets the circuit in the compiler class.
- Parameters
layout (str) – the circuit layout for the target device
- Return type
None
-
classmethod
reset_circuit
()¶ Resets the
circuit
andgraph
class attributes.- Return type
None
-
update_params
(program, device)¶ Updates and checks parameters in the program circuit.
Child classes can override this method with compiler specific logic. If no parameters need to be updated, and are separately checked, this method should not be overridden and be left empty.
- Parameters
program (Program) – Program containing the circuit and gate parameters
device (DeviceSpec) – device specification containing the valid parameter values
- Return type
None
-