Ed Younis

Results 32 comments of Ed Younis

I cannot reproduce this issue, nor can I find a call to `abs()` that could possibly take a U3Gate. Are you still able to reproduce this issue? Can you provide...

Awesome! Just one more test to get this approved and merged in. Can you do a encode-decode-in-one test? As in create a circuit with an `ECRGate`, save to qasm with...

This is an awesome suggestion! After double-checking the code, I think we already do this. We only add two-qubit gates in one direction when building circuits with the provided layer...

Our default layer generator will only build CNOT(a->b) where a < b, so for 3-qubits and all-to-all topology: CNOT(1->2), CNOT(2->3), and CNOT(1->3). So, I think this matches that pattern only...

That is an expensive data structure to maintain. Is there not a simple analytic method for building symmetry-aware circuits? In the example where you have CNOT+U3(1->2) @ CNOT+U3(2->3), what circuit...

Thanks for bringing this issue up. Can you share an example qasm file of a parameterized circuit? We support parameterized gates as that is how we synthesize circuits, but I...

Thanks for providing a simple example and clarifying this. Yeah, BQSKit's IR currently only supports instantiated circuits. As of right now, we are missing some features necessary for you to...

Yeah, you are right! We should definitely update those. Honestly, all the examples and tutorials should be moved to the [bqskit-tutorials repo](https://github.com/BQSKit/bqskit-tutorial).

This is an awesome and welcome addition to BQSKit! If you put this up as a PR, we can get this merged in. I am curious about the qasm issue....

Yeah, this concept is always tricky with qasm. We took the approach in bqskit to try and recognize every common qasm gate and even some uncommon ones without needed definitions....