Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
performance:
- The internal linear algebra library used by the :class:`.TwoQubitBasisDecomposer`
and :class:`.TwoQubitWeylDecomposer` has been updated to use the
`nalgebra <https://docs.rs/nalgebra/latest/nalgebra/>`__ library internally
for matrix storage and matrix multiplication. This was done to imporve the performance
as nalgebra offers fixed size stack allocated smakk matrix types that have
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

smakk is a word?

optimized implmentations of common linear algebra functions. This has led to
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
optimized implmentations of common linear algebra functions. This has led to
optimized implementations of common linear algebra functions. This has led to

a speed up in the synthesis performance of these classes and their internal use in the
transpiler for 2q unitary analysis and synthesis. See
`#15928 <https://github.com/Qiskit/qiskit/pull/15928>`__ and
`#15960 <https://github.com/Qiskit/qiskit/pull/15960>`__ for more details.
Loading