Layout#

class qiskit.transpiler.Layout(input_dict=None)[Quellcode]#

Bases: object

Two-ways dict to represent a Layout.

construct a Layout from a bijective dictionary, mapping virtual qubits to physical qubits

Methods

add(virtual_bit, physical_bit=None)[Quellcode]#

Adds a map element between bit and physical_bit. If physical_bit is not defined, bit will be mapped to a new physical bit.

Parameter:
  • virtual_bit (tuple) – A (qu)bit. For example, (QuantumRegister(3, ‚qr‘), 2).

  • physical_bit (int) – A physical bit. For example, 3.

add_register(reg)[Quellcode]#

Adds at the end physical_qubits that map each bit in reg.

Parameter:

reg (Register) – A (qu)bit Register. For example, QuantumRegister(3, ‚qr‘).

combine_into_edge_map(another_layout)[Quellcode]#

Combines self and another_layout into an „edge map“.

For example:

   self       another_layout  resulting edge map
qr_1 -> 0        0 <- q_2         qr_1 -> q_2
qr_2 -> 2        2 <- q_1         qr_2 -> q_1
qr_3 -> 3        3 <- q_0         qr_3 -> q_0

The edge map is used to compose dags via, for example, compose.

Parameter:

another_layout (Layout) – The other layout to combine.

Rückgabe:

A „edge map“.

Rückgabetyp:

dict

Verursacht:

LayoutError – another_layout can be bigger than self, but not smaller. Otherwise, raises.

copy()[Quellcode]#

Returns a copy of a Layout instance.

from_dict(input_dict)[Quellcode]#

Populates a Layout from a dictionary.

The dictionary must be a bijective mapping between virtual qubits (tuple) and physical qubits (int).

Parameter:

input_dict (dict) –

e.g.:

{(QuantumRegister(3, 'qr'), 0): 0,
 (QuantumRegister(3, 'qr'), 1): 1,
 (QuantumRegister(3, 'qr'), 2): 2}

Can be written more concisely as follows:

* virtual to physical::

    {qr[0]: 0,
     qr[1]: 1,
     qr[2]: 2}

* physical to virtual::

    {0: qr[0],
     1: qr[1],
     2: qr[2]}

static from_intlist(int_list, *qregs)[Quellcode]#

Converts a list of integers to a Layout mapping virtual qubits (index of the list) to physical qubits (the list values).

Parameter:
  • int_list (list) – A list of integers.

  • *qregs (QuantumRegisters) – The quantum registers to apply the layout to.

Rückgabe:

The corresponding Layout object.

Rückgabetyp:

Layout

Verursacht:

LayoutError – Invalid input layout.

static from_qubit_list(qubit_list, *qregs)[Quellcode]#

Populates a Layout from a list containing virtual qubits, Qubit or None.

Parameter:
  • qubit_list (list) – e.g.: [qr[0], None, qr[2], qr[3]]

  • *qregs (QuantumRegisters) – The quantum registers to apply the layout to.

Rückgabe:

the corresponding Layout object

Rückgabetyp:

Layout

Verursacht:

LayoutError – If the elements are not Qubit or None

static generate_trivial_layout(*regs)[Quellcode]#

Creates a trivial („one-to-one“) Layout with the registers and qubits in regs.

Parameter:

*regs (Registers, Qubits) – registers and qubits to include in the layout.

Rückgabe:

A layout with all the regs in the given order.

Rückgabetyp:

Layout

get_physical_bits()[Quellcode]#

Returns the dictionary where the keys are physical (qu)bits and the values are virtual (qu)bits.

get_registers()[Quellcode]#

Returns the registers in the layout [QuantumRegister(2, ‚qr0‘), QuantumRegister(3, ‚qr1‘)] :returns: A set of Registers in the layout :rtype: Set

get_virtual_bits()[Quellcode]#

Returns the dictionary where the keys are virtual (qu)bits and the values are physical (qu)bits.

static order_based_on_type(value1, value2)[Quellcode]#

decides which one is physical/virtual based on the type. Returns (virtual, physical)

reorder_bits(bits)[Quellcode]#

Given an ordered list of bits, reorder them according to this layout.

The list of bits must exactly match the virtual bits in this layout.

Parameter:

bits (list[Bit]) – the bits to reorder.

Rückgabe:

ordered bits.

Rückgabetyp:

List

swap(left, right)[Quellcode]#

Swaps the map between left and right.

Parameter:
  • left (tuple or int) – Item to swap with right.

  • right (tuple or int) – Item to swap with left.

Verursacht:

LayoutError – If left and right have not the same type.