Skip to main contentIBM Quantum Documentation
This page is from an old version of Qiskit SDK and does not exist in the latest version. We recommend you migrate to the latest version. See the release notes for more information.

qiskit.utils.get_entangler_map

get_entangler_map(map_type, num_qubits, offset=0)

GitHub

Utility method to get an entangler map among qubits.

Parameters

  • map_type (str) – ‘full’ entangles each qubit with all the subsequent ones ‘linear’ entangles each qubit with the next ‘sca’ (shifted circular alternating entanglement) is a circular entanglement where the ‘long’ entanglement is shifted by one position every block and every block the role or control/target qubits alternate
  • num_qubits (int) – Number of qubits for which the map is needed
  • offset (int) – Some map_types (e.g. ‘sca’) can shift the gates in the entangler map by the specified integer offset.

Returns

A map of qubit index to an array of indexes to which this should be entangled

Return type

list

Raises

ValueError – if map_type is not valid.

Was this page helpful?
Report a bug or request content on GitHub.