qiskit/test/python/qasm2
Matthew Treinish ddb802506a
Correctly handle non-UnitaryGate gates named "unitary" (#14109)
Normally creating a custom gate class that overloads the name of a
Qiskit defined operation is not valid and not allowed. The names have
meaning and are often used as identifiers and this overloading the name
will prevent Qiskit from correctly identifying an operation. However as
was discovered in #14103 there are some paths available around
serialization and I/O where Qiskit does this itself. For example, qasm
(both 2 and 3) is a lossy serialization format and qasm2 doesn't have a
representation of a UnitaryGate. So when the qasm2 exporter encounteres
a `UnitaryGate` it is serialized as a custom gate definition with the
name "unitary" in the output qasm2 and the definition is a decomposition
of the unitary from the `UnitaryGate`. When that qasm2 program is
subsequently deserialized by qiskit parser the custom gate named "unitary"
is added as a `_DefinedGate` subclass which includes an `__array__`
implementation which computes the unitary from the definition using
the quantum info Operator class. This makes the custom gate parsed from
qasm2 look like a `UnitaryGate` despite not actually one so this is
typically fine for most use cases. However, since #13759 trying to add
that not `UnitaryGate` object named "unitary" would cause the Python ->
Rust translation to panic (which happens as part of qasm2
desierailzation). because the conversion was expecting a gate named
`unitary` to be a `UnitaryGate` as is prescribed by the data model.

This commit fixes this by gracefully handling the lack of a matrix
parameter as it not actually being a `UnitaryGate` and instead the
object gets treated as a `PyGate` in rust which is the expected
behavior.

Related to #14103
2025-03-27 13:13:58 +00:00
..
__init__.py Add Rust-based OpenQASM 2 converter (#9784) 2023-04-12 16:00:54 +00:00
test_arxiv_examples.py Remove condition/c_if, duration, and unit from instructions (#13506) 2025-02-24 15:33:45 +00:00
test_circuit_methods.py Remove condition/c_if, duration, and unit from instructions (#13506) 2025-02-24 15:33:45 +00:00
test_export.py Minor fixes/improvements to some MCX synthesis methods (#14093) 2025-03-27 12:39:05 +00:00
test_expression.py Handle huge integers in OpenQASM 2 expression evaluator (#12140) 2024-05-14 15:26:27 +00:00
test_lexer.py Remove `qiskit.test` (#10998) 2024-01-31 14:11:41 +00:00
test_parse_errors.py Remove `qiskit.test` (#10998) 2024-01-31 14:11:41 +00:00
test_structure.py Correctly handle non-UnitaryGate gates named "unitary" (#14109) 2025-03-27 13:13:58 +00:00