-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Minor fix for beta.2 * Added additional unittests * Update devices.rs * Fixing linting for circuitdag * clippy linting * further clippy linting * Modifications added to add_to_front() as well Co-authored-by: kbarkhqs <[email protected]> Co-authored-by: mlodi-hqs <[email protected]>
- Loading branch information
1 parent
8f67e27
commit 9f363b2
Showing
24 changed files
with
256 additions
and
154 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "qoqo-macros" | ||
version = "1.1.0-beta.1" | ||
version = "1.1.0-beta.2" | ||
authors = ["HQS Quantum Simulations <[email protected]>"] | ||
license = "Apache-2.0" | ||
readme = "../README.md" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "qoqo" | ||
version = "1.1.0-beta.1" | ||
version = "1.1.0-beta.2" | ||
authors = ["HQS Quantum Simulations <[email protected]>"] | ||
license = "Apache-2.0" | ||
homepage = "https://github.com/HQSquantumsimulations/qoqo" | ||
|
@@ -32,8 +32,8 @@ num-complex = "0.4" | |
thiserror = "1.0" | ||
qoqo_calculator = { version="1.1" } | ||
qoqo_calculator_pyo3 = {version="1.1", default-features=false} | ||
qoqo-macros = {version="1.1.0-beta.1", path="../qoqo-macros"} | ||
roqoqo = {version="1.1.0-beta.1", path="../roqoqo", features=["serialize", "overrotate"]} | ||
qoqo-macros = {version="1.1.0-beta.2", path="../qoqo-macros"} | ||
roqoqo = {version="1.1.0-beta.2", path="../roqoqo", features=["serialize", "overrotate"]} | ||
numpy = "0.17" | ||
bincode = "1.3" | ||
serde_json = "1.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8777,7 +8777,7 @@ LICENSE: | |
|
||
|
||
==================================================== | ||
qoqo 1.1.0-beta.1 | ||
qoqo 1.1.0-beta.2 | ||
https://github.com/HQSquantumsimulations/qoqo | ||
by HQS Quantum Simulations <[email protected]> | ||
Quantum computing circuit toolkit. Python interface of roqoqo | ||
|
@@ -8989,7 +8989,7 @@ LICENSE: | |
|
||
|
||
==================================================== | ||
qoqo-macros 1.1.0-beta.1 | ||
qoqo-macros 1.1.0-beta.2 | ||
by HQS Quantum Simulations <[email protected]> | ||
Macros for the qoqo crate | ||
License: Apache-2.0 | ||
|
@@ -11075,7 +11075,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | |
|
||
|
||
==================================================== | ||
roqoqo 1.1.0-beta.1 | ||
roqoqo 1.1.0-beta.2 | ||
https://github.com/HQSquantumsimulations/qoqo | ||
by HQS Quantum Simulations <[email protected]> | ||
Rust Quantum Computing Toolkit by HQS | ||
|
@@ -11287,7 +11287,7 @@ LICENSE: | |
|
||
|
||
==================================================== | ||
roqoqo-derive 1.1.0-beta.1 | ||
roqoqo-derive 1.1.0-beta.2 | ||
by HQS Quantum Simulations <[email protected]> | ||
Macros for the roqoqo crate | ||
License: Apache-2.0 | ||
|
@@ -11498,7 +11498,7 @@ LICENSE: | |
|
||
|
||
==================================================== | ||
roqoqo-test 1.1.0-beta.1 | ||
roqoqo-test 1.1.0-beta.2 | ||
https://github.com/HQSquantumsimulations/qoqo | ||
by HQS Quantum Simulations <[email protected]> | ||
Testing helper functions for roqoqo toolkit | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.