qiskit-documentation/docs/api/qiskit/0.24/qiskit.circuit.library.CZGa...

393 lines
15 KiB
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: CZGate
description: API reference for qiskit.circuit.library.CZGate
in_page_toc_min_heading_level: 1
python_api_type: class
python_api_name: qiskit.circuit.library.CZGate
---
<span id="qiskit-circuit-library-czgate" />
# qiskit.circuit.library.CZGate
<Class id="qiskit.circuit.library.CZGate" isDedicatedPage={true} github="https://github.com/qiskit/qiskit/tree/stable/0.16/qiskit/circuit/library/standard_gates/z.py" signature="CZGate(label=None, ctrl_state=None)" modifiers="class">
Controlled-Z gate.
This is a Clifford and symmetric gate.
**Circuit symbol:**
```python
q_0: ─■─
q_1: ─■─
```
**Matrix representation:**
$$
\begin{split}CZ\ q_1, q_0 =
|0\rangle\langle 0| \otimes I + |1\rangle\langle 1| \otimes Z =
\begin{pmatrix}
1 & 0 & 0 & 0 \\
0 & 1 & 0 & 0 \\
0 & 0 & 1 & 0 \\
0 & 0 & 0 & -1
\end{pmatrix}\end{split}
$$
In the computational basis, this gate flips the phase of the target qubit if the control qubit is in the $|1\rangle$ state.
Create new CZ gate.
### \_\_init\_\_
<Function id="qiskit.circuit.library.CZGate.__init__" signature="__init__(label=None, ctrl_state=None)">
Create new CZ gate.
</Function>
## Methods
| | |
| --------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ |
| [`__init__`](#qiskit.circuit.library.CZGate.__init__ "qiskit.circuit.library.CZGate.__init__")(\[label, ctrl\_state]) | Create new CZ gate. |
| [`add_decomposition`](#qiskit.circuit.library.CZGate.add_decomposition "qiskit.circuit.library.CZGate.add_decomposition")(decomposition) | Add a decomposition of the instruction to the SessionEquivalenceLibrary. |
| [`assemble`](#qiskit.circuit.library.CZGate.assemble "qiskit.circuit.library.CZGate.assemble")() | Assemble a QasmQobjInstruction |
| [`broadcast_arguments`](#qiskit.circuit.library.CZGate.broadcast_arguments "qiskit.circuit.library.CZGate.broadcast_arguments")(qargs, cargs) | Validation and handling of the arguments and its relationship. |
| [`c_if`](#qiskit.circuit.library.CZGate.c_if "qiskit.circuit.library.CZGate.c_if")(classical, val) | Add classical condition on register classical and value val. |
| [`control`](#qiskit.circuit.library.CZGate.control "qiskit.circuit.library.CZGate.control")(\[num\_ctrl\_qubits, label, ctrl\_state]) | Return controlled version of gate. |
| [`copy`](#qiskit.circuit.library.CZGate.copy "qiskit.circuit.library.CZGate.copy")(\[name]) | Copy of the instruction. |
| [`inverse`](#qiskit.circuit.library.CZGate.inverse "qiskit.circuit.library.CZGate.inverse")() | Return inverted CZ gate (itself). |
| [`is_parameterized`](#qiskit.circuit.library.CZGate.is_parameterized "qiskit.circuit.library.CZGate.is_parameterized")() | Return True .IFF. |
| [`mirror`](#qiskit.circuit.library.CZGate.mirror "qiskit.circuit.library.CZGate.mirror")() | DEPRECATED: use instruction.reverse\_ops(). |
| [`power`](#qiskit.circuit.library.CZGate.power "qiskit.circuit.library.CZGate.power")(exponent) | Creates a unitary gate as gate^exponent. |
| [`qasm`](#qiskit.circuit.library.CZGate.qasm "qiskit.circuit.library.CZGate.qasm")() | Return a default OpenQASM string for the instruction. |
| [`repeat`](#qiskit.circuit.library.CZGate.repeat "qiskit.circuit.library.CZGate.repeat")(n) | Creates an instruction with gate repeated n amount of times. |
| [`reverse_ops`](#qiskit.circuit.library.CZGate.reverse_ops "qiskit.circuit.library.CZGate.reverse_ops")() | For a composite instruction, reverse the order of sub-instructions. |
| [`to_matrix`](#qiskit.circuit.library.CZGate.to_matrix "qiskit.circuit.library.CZGate.to_matrix")() | Return a numpy.array for the CZ gate. |
| [`validate_parameter`](#qiskit.circuit.library.CZGate.validate_parameter "qiskit.circuit.library.CZGate.validate_parameter")(parameter) | Gate parameters should be int, float, or ParameterExpression |
## Attributes
| | |
| ------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------- |
| [`ctrl_state`](#qiskit.circuit.library.CZGate.ctrl_state "qiskit.circuit.library.CZGate.ctrl_state") | Return the control state of the gate as a decimal integer. |
| [`decompositions`](#qiskit.circuit.library.CZGate.decompositions "qiskit.circuit.library.CZGate.decompositions") | Get the decompositions of the instruction from the SessionEquivalenceLibrary. |
| [`definition`](#qiskit.circuit.library.CZGate.definition "qiskit.circuit.library.CZGate.definition") | Return definition in terms of other basic gates. |
| [`duration`](#qiskit.circuit.library.CZGate.duration "qiskit.circuit.library.CZGate.duration") | Get the duration. |
| [`label`](#qiskit.circuit.library.CZGate.label "qiskit.circuit.library.CZGate.label") | Return gate label |
| [`num_ctrl_qubits`](#qiskit.circuit.library.CZGate.num_ctrl_qubits "qiskit.circuit.library.CZGate.num_ctrl_qubits") | Get number of control qubits. |
| [`params`](#qiskit.circuit.library.CZGate.params "qiskit.circuit.library.CZGate.params") | Get parameters from base\_gate. |
| [`unit`](#qiskit.circuit.library.CZGate.unit "qiskit.circuit.library.CZGate.unit") | Get the time unit of duration. |
### add\_decomposition
<Function id="qiskit.circuit.library.CZGate.add_decomposition" signature="add_decomposition(decomposition)">
Add a decomposition of the instruction to the SessionEquivalenceLibrary.
</Function>
### assemble
<Function id="qiskit.circuit.library.CZGate.assemble" signature="assemble()">
Assemble a QasmQobjInstruction
**Return type**
`Instruction`
</Function>
### broadcast\_arguments
<Function id="qiskit.circuit.library.CZGate.broadcast_arguments" signature="broadcast_arguments(qargs, cargs)">
Validation and handling of the arguments and its relationship.
For example, `cx([q[0],q[1]], q[2])` means `cx(q[0], q[2]); cx(q[1], q[2])`. This method yields the arguments in the right grouping. In the given example:
```python
in: [[q[0],q[1]], q[2]],[]
outs: [q[0], q[2]], []
[q[1], q[2]], []
```
The general broadcasting rules are:
> * If len(qargs) == 1:
>
> ```python
> [q[0], q[1]] -> [q[0]],[q[1]]
> ```
>
> * If len(qargs) == 2:
>
> ```python
> [[q[0], q[1]], [r[0], r[1]]] -> [q[0], r[0]], [q[1], r[1]]
> [[q[0]], [r[0], r[1]]] -> [q[0], r[0]], [q[0], r[1]]
> [[q[0], q[1]], [r[0]]] -> [q[0], r[0]], [q[1], r[0]]
> ```
>
> * If len(qargs) >= 3:
>
> ```python
> [q[0], q[1]], [r[0], r[1]], ...] -> [q[0], r[0], ...], [q[1], r[1], ...]
> ```
**Parameters**
* **qargs** (`List`) List of quantum bit arguments.
* **cargs** (`List`) List of classical bit arguments.
**Return type**
`Tuple`\[`List`, `List`]
**Returns**
A tuple with single arguments.
**Raises**
**CircuitError** If the input is not valid. For example, the number of arguments does not match the gate expectation.
</Function>
### c\_if
<Function id="qiskit.circuit.library.CZGate.c_if" signature="c_if(classical, val)">
Add classical condition on register classical and value val.
</Function>
### control
<Function id="qiskit.circuit.library.CZGate.control" signature="control(num_ctrl_qubits=1, label=None, ctrl_state=None)">
Return controlled version of gate. See [`ControlledGate`](qiskit.circuit.ControlledGate "qiskit.circuit.ControlledGate") for usage.
**Parameters**
* **num\_ctrl\_qubits** (`Optional`\[`int`]) number of controls to add to gate (default=1)
* **label** (`Optional`\[`str`]) optional gate label
* **ctrl\_state** (`Union`\[`int`, `str`, `None`]) The control state in decimal or as a bitstring (e.g. 111). If None, use 2\*\*num\_ctrl\_qubits-1.
**Returns**
Controlled version of gate. This default algorithm uses num\_ctrl\_qubits-1 ancillae qubits so returns a gate of size num\_qubits + 2\*num\_ctrl\_qubits - 1.
**Return type**
[qiskit.circuit.ControlledGate](qiskit.circuit.ControlledGate "qiskit.circuit.ControlledGate")
**Raises**
**QiskitError** unrecognized mode or invalid ctrl\_state
</Function>
### copy
<Function id="qiskit.circuit.library.CZGate.copy" signature="copy(name=None)">
Copy of the instruction.
**Parameters**
**name** (*str*) name to be given to the copied circuit, if None then the name stays the same.
**Returns**
**a copy of the current instruction, with the name**
updated if it was provided
**Return type**
[qiskit.circuit.Instruction](qiskit.circuit.Instruction "qiskit.circuit.Instruction")
</Function>
### ctrl\_state
<Attribute id="qiskit.circuit.library.CZGate.ctrl_state">
Return the control state of the gate as a decimal integer.
**Return type**
`int`
</Attribute>
### decompositions
<Attribute id="qiskit.circuit.library.CZGate.decompositions">
Get the decompositions of the instruction from the SessionEquivalenceLibrary.
</Attribute>
### definition
<Attribute id="qiskit.circuit.library.CZGate.definition">
Return definition in terms of other basic gates. If the gate has open controls, as determined from self.ctrl\_state, the returned definition is conjugated with X without changing the internal \_definition.
**Return type**
`List`
</Attribute>
### duration
<Attribute id="qiskit.circuit.library.CZGate.duration">
Get the duration.
</Attribute>
### inverse
<Function id="qiskit.circuit.library.CZGate.inverse" signature="inverse()">
Return inverted CZ gate (itself).
</Function>
### is\_parameterized
<Function id="qiskit.circuit.library.CZGate.is_parameterized" signature="is_parameterized()">
Return True .IFF. instruction is parameterized else False
</Function>
### label
<Attribute id="qiskit.circuit.library.CZGate.label">
Return gate label
**Return type**
`str`
</Attribute>
### mirror
<Function id="qiskit.circuit.library.CZGate.mirror" signature="mirror()">
DEPRECATED: use instruction.reverse\_ops().
**Returns**
**a new instruction with sub-instructions**
reversed.
**Return type**
[qiskit.circuit.Instruction](qiskit.circuit.Instruction "qiskit.circuit.Instruction")
</Function>
### num\_ctrl\_qubits
<Attribute id="qiskit.circuit.library.CZGate.num_ctrl_qubits">
Get number of control qubits.
**Returns**
The number of control qubits for the gate.
**Return type**
int
</Attribute>
### params
<Attribute id="qiskit.circuit.library.CZGate.params">
Get parameters from base\_gate.
**Returns**
List of gate parameters.
**Return type**
list
**Raises**
**CircuitError** Controlled gate does not define a base gate
</Attribute>
### power
<Function id="qiskit.circuit.library.CZGate.power" signature="power(exponent)">
Creates a unitary gate as gate^exponent.
**Parameters**
**exponent** (*float*) Gate^exponent
**Returns**
To which to\_matrix is self.to\_matrix^exponent.
**Return type**
[qiskit.extensions.UnitaryGate](qiskit.extensions.UnitaryGate "qiskit.extensions.UnitaryGate")
**Raises**
**CircuitError** If Gate is not unitary
</Function>
### qasm
<Function id="qiskit.circuit.library.CZGate.qasm" signature="qasm()">
Return a default OpenQASM string for the instruction.
Derived instructions may override this to print in a different format (e.g. measure q\[0] -> c\[0];).
</Function>
### repeat
<Function id="qiskit.circuit.library.CZGate.repeat" signature="repeat(n)">
Creates an instruction with gate repeated n amount of times.
**Parameters**
**n** (*int*) Number of times to repeat the instruction
**Returns**
Containing the definition.
**Return type**
[qiskit.circuit.Instruction](qiskit.circuit.Instruction "qiskit.circuit.Instruction")
**Raises**
**CircuitError** If n \< 1.
</Function>
### reverse\_ops
<Function id="qiskit.circuit.library.CZGate.reverse_ops" signature="reverse_ops()">
For a composite instruction, reverse the order of sub-instructions.
This is done by recursively reversing all sub-instructions. It does not invert any gate.
**Returns**
**a new instruction with**
sub-instructions reversed.
**Return type**
[qiskit.circuit.Instruction](qiskit.circuit.Instruction "qiskit.circuit.Instruction")
</Function>
### to\_matrix
<Function id="qiskit.circuit.library.CZGate.to_matrix" signature="to_matrix()">
Return a numpy.array for the CZ gate.
</Function>
### unit
<Attribute id="qiskit.circuit.library.CZGate.unit">
Get the time unit of duration.
</Attribute>
### validate\_parameter
<Function id="qiskit.circuit.library.CZGate.validate_parameter" signature="validate_parameter(parameter)">
Gate parameters should be int, float, or ParameterExpression
</Function>
</Class>