Skip to content

Commit

Permalink
Oxidize the numeric code in the Isometry gate class
Browse files Browse the repository at this point in the history
This commit ports the numeric portion of the Isometry gate class to
rust. While this will likely improve the performance slightly this move
is more to make isolate this code from blas/lapack in numpy. We're
hitting some stability issues on arm64 mac in CI and moving this code to
rust should hopefully fix this issue. As this is more for functional
reasons no real performance tuning was done on this port, there are
likely several opportunities to improve the runtime performance of the
code.
  • Loading branch information
mtreinish committed Apr 17, 2024
1 parent 166dccc commit 50d411a
Show file tree
Hide file tree
Showing 7 changed files with 433 additions and 126 deletions.
10 changes: 10 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions crates/accelerate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ num-complex = "0.4"
num-bigint = "0.4"
rustworkx-core = "0.14"
faer = "0.18.2"
itertools = "0.12.1"

[dependencies.smallvec]
version = "1.13"
Expand Down
Loading

0 comments on commit 50d411a

Please sign in to comment.