qiskit-documentation/docs/api/qiskit/0.30/qiskit.circuit.library.XOR.mdx

141 lines
4.1 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: XOR
description: API reference for qiskit.circuit.library.XOR
in_page_toc_min_heading_level: 1
python_api_type: class
python_api_name: qiskit.circuit.library.XOR
---
# XOR
<Class id="qiskit.circuit.library.XOR" isDedicatedPage={true} github="https://github.com/qiskit/qiskit/tree/stable/0.18/qiskit/circuit/library/boolean_logic/quantum_xor.py" signature="XOR(num_qubits, amount=None, seed=None)" modifiers="class">
Bases: `qiskit.circuit.quantumcircuit.QuantumCircuit`
An n\_qubit circuit for bitwise xor-ing the input with some integer `amount`.
The `amount` is xor-ed in bitstring form with the input.
This circuit can also represent addition by `amount` over the finite field GF(2).
Return a circuit implementing bitwise xor.
**Parameters**
* **num\_qubits** (`int`) the width of circuit.
* **amount** (`Optional`\[`int`]) the xor amount in decimal form.
* **seed** (`Optional`\[`int`]) random seed in case a random xor is requested.
**Raises**
**CircuitError** if the xor bitstring exceeds available qubits.
**Reference Circuit:**
## Attributes
### ancillas
<Attribute id="qiskit.circuit.library.XOR.ancillas">
Returns a list of ancilla bits in the order that the registers were added.
</Attribute>
### calibrations
<Attribute id="qiskit.circuit.library.XOR.calibrations">
Return calibration dictionary.
**The custom pulse definition of a given gate is of the form**
\{gate\_name: \{(qubits, params): schedule}}
</Attribute>
### clbits
<Attribute id="qiskit.circuit.library.XOR.clbits">
Returns a list of classical bits in the order that the registers were added.
</Attribute>
### data
<Attribute id="qiskit.circuit.library.XOR.data">
Return the circuit data (instructions and context).
**Returns**
a list-like object containing the tuples for the circuits data.
Each tuple is in the format `(instruction, qargs, cargs)`, where instruction is an Instruction (or subclass) object, qargs is a list of Qubit objects, and cargs is a list of Clbit objects.
**Return type**
QuantumCircuitData
</Attribute>
### extension\_lib
<Attribute id="qiskit.circuit.library.XOR.extension_lib" attributeValue="'include &#x22;qelib1.inc&#x22;;'" />
### global\_phase
<Attribute id="qiskit.circuit.library.XOR.global_phase">
Return the global phase of the circuit in radians.
</Attribute>
### header
<Attribute id="qiskit.circuit.library.XOR.header" attributeValue="'OPENQASM 2.0;'" />
### instances
<Attribute id="qiskit.circuit.library.XOR.instances" attributeValue="16" />
### metadata
<Attribute id="qiskit.circuit.library.XOR.metadata">
The user provided metadata associated with the circuit
The metadata for the circuit is a user provided `dict` of metadata for the circuit. It will not be used to influence the execution or operation of the circuit, but it is expected to be passed between all transforms of the circuit (ie transpilation) and that providers will associate any circuit metadata with the results it returns from execution of that circuit.
</Attribute>
### num\_ancillas
<Attribute id="qiskit.circuit.library.XOR.num_ancillas">
Return the number of ancilla qubits.
</Attribute>
### num\_clbits
<Attribute id="qiskit.circuit.library.XOR.num_clbits">
Return number of classical bits.
</Attribute>
### num\_parameters
<Attribute id="qiskit.circuit.library.XOR.num_parameters">
Convenience function to get the number of parameter objects in the circuit.
</Attribute>
### num\_qubits
<Attribute id="qiskit.circuit.library.XOR.num_qubits">
Return number of qubits.
</Attribute>
### parameters
<Attribute id="qiskit.circuit.library.XOR.parameters">
Convenience function to get the parameters defined in the parameter table.
</Attribute>
### prefix
<Attribute id="qiskit.circuit.library.XOR.prefix" attributeValue="'circuit'" />
### qubits
<Attribute id="qiskit.circuit.library.XOR.qubits">
Returns a list of quantum bits in the order that the registers were added.
</Attribute>
</Class>