-
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.
* Temporary change of qoqo_calculator * Removed qoqo_calculator branch dependency * Increased version numbers and updated changelog * Fixed input type for DeviceTrait * Fixed unittest * Simplified two qubit gate matrix unittests * Updated to pyo3 0.15.0 * Fixed typo in ci workflow * Removed faulty 3.10 (python) support, will address later * Started unittesting qoqo quantum program * Increased unittest coverage for quantum program * Increased coverage for quantum program and measurements in qoqo * Added unittests for multi qubit gates in qoqo * Increased coverage for multi qubit gate operations and pragma operations * Fixed formatting
- Loading branch information
Showing
17 changed files
with
1,513 additions
and
17 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
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 |
---|---|---|
|
@@ -7710,7 +7710,7 @@ LICENSE: | |
|
||
|
||
==================================================== | ||
qoqo 0.8.0 | ||
qoqo 0.8.1 | ||
https://github.com/HQSquantumsimulations/qoqo | ||
by HQS Quantum Simulations <[email protected]> | ||
Quantum computing circuit toolkit. Python interface of roqoqo | ||
|
@@ -7922,7 +7922,7 @@ LICENSE: | |
|
||
|
||
==================================================== | ||
qoqo-macros 0.8.0 | ||
qoqo-macros 0.8.1 | ||
by HQS Quantum Simulations <[email protected]> | ||
Macros for the qoqo crate | ||
License: Apache-2.0 | ||
|
@@ -9865,7 +9865,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | |
|
||
|
||
==================================================== | ||
roqoqo 0.8.0 | ||
roqoqo 0.8.1 | ||
https://github.com/HQSquantumsimulations/qoqo | ||
by HQS Quantum Simulations <[email protected]> | ||
Rust Quantum Computing Toolkit by HQS | ||
|
@@ -10077,7 +10077,7 @@ LICENSE: | |
|
||
|
||
==================================================== | ||
roqoqo-derive 0.8.0 | ||
roqoqo-derive 0.8.1 | ||
by HQS Quantum Simulations <[email protected]> | ||
Maros for the roqoqo crate | ||
License: Apache-2.0 | ||
|
@@ -10288,7 +10288,7 @@ LICENSE: | |
|
||
|
||
==================================================== | ||
roqoqo-test 0.8.0 | ||
roqoqo-test 0.8.1 | ||
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
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
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 |
---|---|---|
|
@@ -16,5 +16,8 @@ mod operations; | |
#[cfg(test)] | ||
mod circuit; | ||
|
||
#[cfg(test)] | ||
mod quantum_program; | ||
|
||
#[cfg(test)] | ||
mod measurements; |
Oops, something went wrong.