Portuguese, Brazilian
Idiomas
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

qiskit.dagcircuit.DAGCircuit

class DAGCircuit[código fonte]

Quantum circuit as a directed acyclic graph.

There are 3 types of nodes in the graph: inputs, outputs, and operations. The nodes are connected by directed edges that correspond to qubits and bits.

Create an empty circuit.

__init__()[código fonte]

Create an empty circuit.

Methods

__init__()

Create an empty circuit.

add_creg(creg)

Add all wires in a classical register.

add_qreg(qreg)

Add all wires in a quantum register.

ancestors(node)

Returns set of the ancestors of a node as DAGNodes.

apply_operation_back(op[, qargs, cargs, …])

Apply an operation to the output of the circuit.

apply_operation_front(op, qargs, cargs[, …])

Apply an operation to the input of the circuit.

bfs_successors(node)

Returns an iterator of tuples of (DAGNode, [DAGNodes]) where the DAGNode is the current node and [DAGNode] is its successors in BFS order.

collect_runs(namelist)

Return a set of non-conditional runs of “op” nodes with the given names.

compose(other[, edge_map, qubits, clbits, …])

Compose the other circuit onto the output of this circuit.

compose_back(input_circuit[, edge_map])

DEPRECATED: use DAGCircuit.compose() instead.

count_ops()

Count the occurrences of operation names.

count_ops_longest_path()

Count the occurrences of operation names on the longest path.

depth()

Return the circuit depth.

descendants(node)

Returns set of the descendants of a node as DAGNodes.

draw([scale, filename, style])

Draws the dag circuit.

edges([nodes])

Iterator for edge values and source and dest node

extend_back(dag[, edge_map])

DEPRECATED: Add dag at the end of self, using edge_map.

from_networkx(graph)

Take a networkx MultiDigraph and create a new DAGCircuit.

front_layer()

Return a list of op nodes in the first layer of this dag.

gate_nodes()

Get the list of gate nodes in the dag.

has_calibration_for(node)

Return True if the dag has a calibration defined for the node operation.

idle_wires([ignore])

Return idle wires.

layers()

Yield a shallow view on a layer of this DAGCircuit for all d layers of this circuit.

longest_path()

Returns the longest path in the dag as a list of DAGNodes.

multi_qubit_ops()

Get list of 3+ qubit operations.

multigraph_layers()

Yield layers of the multigraph.

named_nodes(*names)

Get the set of “op” nodes with the given name.

node(node_id)

Get the node in the dag.

nodes()

Iterator for node values.

nodes_on_wire(wire[, only_ops])

Iterator for nodes that affect a given wire.

num_clbits()

Return the total number of classical bits used by the circuit.

num_qubits()

Return the total number of qubits used by the circuit.

num_tensor_factors()

Compute how many components the circuit can decompose into.

op_nodes([op, include_directives])

Get the list of “op” nodes in the dag.

predecessors(node)

Returns iterator of the predecessors of a node as DAGNodes.

properties()

Return a dictionary of circuit properties.

quantum_predecessors(node)

Returns iterator of the predecessors of a node that are connected by a quantum edge as DAGNodes.

quantum_successors(node)

Returns iterator of the successors of a node that are connected by a quantum edge as DAGNodes.

remove_all_ops_named(opname)

Remove all operation nodes with the given name.

remove_ancestors_of(node)

Remove all of the ancestor operation nodes of node.

remove_descendants_of(node)

Remove all of the descendant operation nodes of node.

remove_nonancestors_of(node)

Remove all of the non-ancestors operation nodes of node.

remove_nondescendants_of(node)

Remove all of the non-descendants operation nodes of node.

remove_op_node(node)

Remove an operation node n.

reverse_ops()

Reverse the operations in the self circuit.

serial_layers()

Yield a layer for all gates of this circuit.

size()

Return the number of operations.

substitute_node(node, op[, inplace])

Replace a DAGNode with a single instruction.

substitute_node_with_dag(node, input_dag[, …])

Replace one node with dag.

successors(node)

Returns iterator of the successors of a node as DAGNodes.

threeQ_or_more_gates()

Get list of 3-or-more-qubit gates: (id, data).

to_networkx()

Returns a copy of the DAGCircuit in networkx format.

topological_nodes()

Yield nodes in topological order.

topological_op_nodes()

Yield op nodes in topological order.

twoQ_gates()

Get list of 2-qubit gates.

two_qubit_ops()

Get list of 2 qubit operations.

width()

Return the total number of qubits + clbits used by the circuit.

Attributes

calibrations

Return calibration dictionary.

clbits

Return a list of classical bits (as a list of Clbit instances).

global_phase

Return the global phase of the circuit.

node_counter

Returns the number of nodes in the dag.

qubits

Return a list of qubits (as a list of Qubit instances).

wires

Return a list of the wires in order.

add_creg(creg)[código fonte]

Add all wires in a classical register.

add_qreg(qreg)[código fonte]

Add all wires in a quantum register.

ancestors(node)[código fonte]

Returns set of the ancestors of a node as DAGNodes.

apply_operation_back(op, qargs=None, cargs=None, condition=None)[código fonte]

Apply an operation to the output of the circuit.

Parâmetros
  • op (qiskit.circuit.Instruction) – the operation associated with the DAG node

  • qargs (list[Qubit]) – qubits that op will be applied to

  • cargs (list[Clbit]) – cbits that op will be applied to

  • condition (tuple or None) – DEPRACTED optional condition (ClassicalRegister, int)

Retorna

the current max node

Tipo de retorno

DAGNode

Levanta

DAGCircuitError – if a leaf node is connected to multiple outputs

apply_operation_front(op, qargs, cargs, condition=None)[código fonte]

Apply an operation to the input of the circuit.

Parâmetros
  • op (qiskit.circuit.Instruction) – the operation associated with the DAG node

  • qargs (list[Qubit]) – qubits that op will be applied to

  • cargs (list[Clbit]) – cbits that op will be applied to

  • condition (tuple or None) – DEPRACTED optional condition (ClassicalRegister, int)

Retorna

the current max node

Tipo de retorno

DAGNode

Levanta

DAGCircuitError – if initial nodes connected to multiple out edges

bfs_successors(node)[código fonte]

Returns an iterator of tuples of (DAGNode, [DAGNodes]) where the DAGNode is the current node and [DAGNode] is its successors in BFS order.

property calibrations

Return calibration dictionary.

The custom pulse definition of a given gate is of the form

{‘gate_name’: {(qubits, params): schedule}}

property clbits

Return a list of classical bits (as a list of Clbit instances).

collect_runs(namelist)[código fonte]

Return a set of non-conditional runs of “op” nodes with the given names.

For example, “… h q[0]; cx q[0],q[1]; cx q[0],q[1]; h q[1]; ..” would produce the tuple of cx nodes as an element of the set returned from a call to collect_runs([“cx”]). If instead the cx nodes were “cx q[0],q[1]; cx q[1],q[0];”, the method would still return the pair in a tuple. The namelist can contain names that are not in the circuit’s basis.

Nodes must have only one successor to continue the run.

compose(other, edge_map=None, qubits=None, clbits=None, front=False, inplace=True)[código fonte]

Compose the other circuit onto the output of this circuit.

A subset of input wires of other are mapped to a subset of output wires of this circuit.

other can be narrower or of equal width to self.

Parâmetros
  • other (DAGCircuit) – circuit to compose with self

  • edge_map (dict) – DEPRECATED - a {Bit: Bit} map from input wires of other to output wires of self (i.e. rhs->lhs). The key, value pairs can be either Qubit or Clbit mappings.

  • qubits (list[Qubit|int]) – qubits of self to compose onto.

  • clbits (list[Clbit|int]) – clbits of self to compose onto.

  • front (bool) – If True, front composition will be performed (not implemented yet)

  • inplace (bool) – If True, modify the object. Otherwise return composed circuit.

Retorna

the composed dag (returns None if inplace==True).

Tipo de retorno

DAGCircuit

Levanta

DAGCircuitError – if other is wider or there are duplicate edge mappings.

compose_back(input_circuit, edge_map=None)[código fonte]

DEPRECATED: use DAGCircuit.compose() instead.

count_ops()[código fonte]

Count the occurrences of operation names.

Returns a dictionary of counts keyed on the operation name.

count_ops_longest_path()[código fonte]

Count the occurrences of operation names on the longest path.

Returns a dictionary of counts keyed on the operation name.

depth()[código fonte]

Return the circuit depth. :returns: the circuit depth :rtype: int

Levanta

DAGCircuitError – if not a directed acyclic graph

descendants(node)[código fonte]

Returns set of the descendants of a node as DAGNodes.

draw(scale=0.7, filename=None, style='color')[código fonte]

Draws the dag circuit.

This function needs pydot, which in turn needs Graphviz to be installed.

Parâmetros
  • scale (float) – scaling factor

  • filename (str) – file path to save image to (format inferred from name)

  • style (str) – ‘plain’: B&W graph; ‘color’ (default): color input/output/op nodes

Retorna

if in Jupyter notebook and not saving to file, otherwise None.

Tipo de retorno

Ipython.display.Image

edges(nodes=None)[código fonte]

Iterator for edge values and source and dest node

This works by returning the output edges from the specified nodes. If no nodes are specified all edges from the graph are returned.

Parâmetros

nodes (DAGNode|list(DAGNode) – Either a list of nodes or a single input node. If none is specified all edges are returned from the graph.

Yields

edge

the edge in the same format as out_edges the tuple

(source node, destination node, edge data)

extend_back(dag, edge_map=None)[código fonte]

DEPRECATED: Add dag at the end of self, using edge_map.

classmethod from_networkx(graph)[código fonte]

Take a networkx MultiDigraph and create a new DAGCircuit.

Parâmetros

graph (networkx.MultiDiGraph) – The graph to create a DAGCircuit object from. The format of this MultiDiGraph format must be in the same format as returned by to_networkx.

Retorna

The dagcircuit object created from the networkx

MultiDiGraph.

Tipo de retorno

DAGCircuit

front_layer()[código fonte]

Return a list of op nodes in the first layer of this dag.

gate_nodes()[código fonte]

Get the list of gate nodes in the dag.

Retorna

the list of DAGNodes that represent gates.

Tipo de retorno

list[DAGNode]

property global_phase

Return the global phase of the circuit.

has_calibration_for(node)[código fonte]

Return True if the dag has a calibration defined for the node operation. In this case, the operation does not need to be translated to the device basis.

idle_wires(ignore=None)[código fonte]

Return idle wires.

Parâmetros

ignore (list(str)) – List of node names to ignore. Default: []

Yields

Bit – Bit in idle wire.

layers()[código fonte]

Yield a shallow view on a layer of this DAGCircuit for all d layers of this circuit.

A layer is a circuit whose gates act on disjoint qubits, i.e., a layer has depth 1. The total number of layers equals the circuit depth d. The layers are indexed from 0 to d-1 with the earliest layer at index 0. The layers are constructed using a greedy algorithm. Each returned layer is a dict containing {“graph”: circuit graph, “partition”: list of qubit lists}.

The returned layer contains new (but semantically equivalent) DAGNodes. These are not the same as nodes of the original dag, but are equivalent via DAGNode.semantic_eq(node1, node2).

TODO: Gates that use the same cbits will end up in different layers as this is currently implemented. This may not be the desired behavior.

longest_path()[código fonte]

Returns the longest path in the dag as a list of DAGNodes.

multi_qubit_ops()[código fonte]

Get list of 3+ qubit operations. Ignore directives like snapshot and barrier.

multigraph_layers()[código fonte]

Yield layers of the multigraph.

named_nodes(*names)[código fonte]

Get the set of “op” nodes with the given name.

node(node_id)[código fonte]

Get the node in the dag.

Parâmetros

node_id (int) – Node identifier.

Retorna

the node.

Tipo de retorno

node

property node_counter

Returns the number of nodes in the dag.

nodes()[código fonte]

Iterator for node values.

Yields

node – the node.

nodes_on_wire(wire, only_ops=False)[código fonte]

Iterator for nodes that affect a given wire.

Parâmetros
  • wire (Bit) – the wire to be looked at.

  • only_ops (bool) – True if only the ops nodes are wanted; otherwise, all nodes are returned.

Yields

DAGNode – the successive ops on the given wire

Levanta

DAGCircuitError – if the given wire doesn’t exist in the DAG

num_clbits()[código fonte]

Return the total number of classical bits used by the circuit.

num_qubits()[código fonte]

Return the total number of qubits used by the circuit. num_qubits() replaces former use of width(). DAGCircuit.width() now returns qubits + clbits for consistency with Circuit.width() [qiskit-terra #2564].

num_tensor_factors()[código fonte]

Compute how many components the circuit can decompose into.

op_nodes(op=None, include_directives=True)[código fonte]

Get the list of “op” nodes in the dag.

Parâmetros
  • op (Type) – qiskit.circuit.Instruction subclass op nodes to return. If None, return all op nodes.

  • include_directives (bool) – include barrier, snapshot etc.

Retorna

the list of node ids containing the given op.

Tipo de retorno

list[DAGNode]

predecessors(node)[código fonte]

Returns iterator of the predecessors of a node as DAGNodes.

properties()[código fonte]

Return a dictionary of circuit properties.

quantum_predecessors(node)[código fonte]

Returns iterator of the predecessors of a node that are connected by a quantum edge as DAGNodes.

quantum_successors(node)[código fonte]

Returns iterator of the successors of a node that are connected by a quantum edge as DAGNodes.

property qubits

Return a list of qubits (as a list of Qubit instances).

remove_all_ops_named(opname)[código fonte]

Remove all operation nodes with the given name.

remove_ancestors_of(node)[código fonte]

Remove all of the ancestor operation nodes of node.

remove_descendants_of(node)[código fonte]

Remove all of the descendant operation nodes of node.

remove_nonancestors_of(node)[código fonte]

Remove all of the non-ancestors operation nodes of node.

remove_nondescendants_of(node)[código fonte]

Remove all of the non-descendants operation nodes of node.

remove_op_node(node)[código fonte]

Remove an operation node n.

Add edges from predecessors to successors.

reverse_ops()[código fonte]

Reverse the operations in the self circuit.

Retorna

the reversed dag.

Tipo de retorno

DAGCircuit

serial_layers()[código fonte]

Yield a layer for all gates of this circuit.

A serial layer is a circuit with one gate. The layers have the same structure as in layers().

size()[código fonte]

Return the number of operations.

substitute_node(node, op, inplace=False)[código fonte]

Replace a DAGNode with a single instruction. qargs, cargs and conditions for the new instruction will be inferred from the node to be replaced. The new instruction will be checked to match the shape of the replaced instruction.

Parâmetros
Retorna

the new node containing the added instruction.

Tipo de retorno

DAGNode

Levanta
  • DAGCircuitError – If replacement instruction was incompatible with

  • location of target node.

substitute_node_with_dag(node, input_dag, wires=None)[código fonte]

Replace one node with dag.

Parâmetros
  • node (DAGNode) – node to substitute

  • input_dag (DAGCircuit) – circuit that will substitute the node

  • wires (list[Bit]) – gives an order for (qu)bits in the input circuit. This order gets matched to the node wires by qargs first, then cargs, then conditions.

Levanta

DAGCircuitError – if met with unexpected predecessor/successors

successors(node)[código fonte]

Returns iterator of the successors of a node as DAGNodes.

threeQ_or_more_gates()[código fonte]

Get list of 3-or-more-qubit gates: (id, data).

to_networkx()[código fonte]

Returns a copy of the DAGCircuit in networkx format.

topological_nodes()[código fonte]

Yield nodes in topological order.

Retorna

node in topological order

Tipo de retorno

generator(DAGNode)

topological_op_nodes()[código fonte]

Yield op nodes in topological order.

Retorna

op node in topological order

Tipo de retorno

generator(DAGNode)

twoQ_gates()[código fonte]

Get list of 2-qubit gates. Ignore snapshot, barriers, and the like.

two_qubit_ops()[código fonte]

Get list of 2 qubit operations. Ignore directives like snapshot and barrier.

width()[código fonte]

Return the total number of qubits + clbits used by the circuit. This function formerly returned the number of qubits by the calculation return len(self._wires) - self.num_clbits() but was changed by issue #2564 to return number of qubits + clbits with the new function DAGCircuit.num_qubits replacing the former semantic of DAGCircuit.width().

property wires

Return a list of the wires in order.