Brian N. Siegelwax
Brian N. Siegelwax
From https://nbviewer.org/github/artiste-qb-net/qubiter/blob/master/qubiter/jupyter_notebooks/Say_Hello_World_With_Qubiter.ipynb ``` wr.print_eng_file(jup=True) ``` generated ``` --------------------------------------------------------------------------- TypeError Traceback (most recent call last) [](https://localhost:8080/#) in () ----> 1 wr.print_eng_file(jup=True) TypeError: SEO_writer.print_eng_file() got an unexpected keyword argument 'jup' ``` in...
From https://nbviewer.org/github/artiste-qb-net/qubiter/blob/master/qubiter/jupyter_notebooks/Say_Hello_World_With_Qubiter.ipynb ``` trols = Controls(num_qbits, {1:True, 2:False, 3:False}) ``` generated ``` --------------------------------------------------------------------------- TypeError Traceback (most recent call last) [](https://localhost:8080/#) in () 2 rads = 30*np.pi/180 3 ax = 2...
From https://nbviewer.org/github/artiste-qb-net/qubiter/blob/master/qubiter/jupyter_notebooks/Say_Hello_World_With_Qubiter.ipynb ``` wr.write_qbit_swap(1, 3) ``` generated ``` --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) [](https://localhost:8080/#) in () ----> 1 wr.write_qbit_swap(1, 3) AttributeError: 'SEO_writer' object has no attribute 'write_qbit_swap' ```...
https://aqua.sfc.wide.ad.jp/quisp-online/0.2.1/ is displaying: ``` Application exit (RangeError: Maximum call stack size exceeded) ```
**Describe the bug** ``` --------------------------------------------------------------------------- TypeError Traceback (most recent call last) [/usr/local/lib/python3.10/dist-packages/pandas/core/ops/array_ops.py](https://localhost:8080/#) in _na_arithmetic_op(left, right, op, is_cmp) 164 try: --> 165 result = func(left, right) 166 except TypeError: 15 frames...
I have a simple 2-qubit 2-bit dynamic circuit with 1 conditional rotation that executed on ibmq_manila just fine. But, when I add mapomatic I get: CircuitError: "Unknown classical resource specifier:...
When executing ``` from qat.lang.AQASM import Program, H, CNOT # Create a Program qprog = Program() # Number of qbits nbqbits = 2 # Allocate some qbits qbits = qprog.qalloc(nbqbits)...