Kazuki Tsuoka
Kazuki Tsuoka
- The current implementation for converting a Qiskit circuit to a Tensorcircuit circuit does not allow Qiskit's circuit to involve gates with multiple parameters or use NumPy's ufunc. `sympy.lambdify` can...
### Summary Resolve #12048 ### Details and comments - We may need to change the logic of `_mcsu2_real_diagonal` for #12135 (maybe in other PR) - Deprecate importing `mcrx`, `mcry` and...
In qiskit, [barrier](https://qiskit.org/documentation/stubs/qiskit.circuit.library.Barrier.html) will separate the circuit into two distinct areas for visual purposes. (Also, it will prevent combining gates through barriers while using transpiler) To break components into separate...
Add a method to print `Pattern` in LaTeX format like $$ X_7^{3} M_3^{0} E_{37} N_7 X_6^5 Z_6^4 Z_3^4 M_5^0 M_4^0 E_{56} E_{45} E_{35} N_6 N_5 X_4^1 M_1^0 E_{14} N_4 Z_3^0...
Before submitting, please check the following: - Make sure you have tests for the new code and that test passes (run `tox`) - format added code by `black -l 120...
In #98, I added `rustworkx` as a backend for the graph state simulator, but sadly, the performance improvement was subtle. I think this is because most of the optimization process...
The following methods may improve the utility of `Statevec`: - [ ] `.inner()`: calculate the inner product of two state vectors - return `np.abs(np.dot(sv1.flatten().conjugate(), sv2.flatten()))` - [ ] `.equiv()`: checks...
Van den Nest et al. (https://arxiv.org/abs/quant-ph/0405023) shows an efficient algorithm to detect local Clifford equivalence of two given graph states. It is known that all stabilizer states are equivalent under...
**Is your feature request related to a problem? Please describe.** The use of random numbers in testing can be cited as a reason why transpiler bugs were not found until...
*Issue #, if available:* Related to #98 *Description of changes:* - `qml.sample()` can now be used without specifying the observable. Example: ```python import pennylane as qml from pennylane import numpy...