Josh Izaac

Results 153 comments of Josh Izaac

@erick-xanadu this applies to operators as well: ```python dev = qml.device("lightning.qubit", wires=4) @qjit @qml.qnode(dev) def circuit(n): print("Tracing occurring") def loop_fn(i): qml.RX(i, wires=i) for_loop(0, n, 1)(loop_fn)() def loop_fn(i): qml.CNOT(wires=[i, jnp.mod(i+1, n)])...

Potentially this is a wider conversation, because I think this goes beyond just async. Namely: how can we allow users to specify local compiler options (async, error mitigation, etc.) within...

> I like the context-style approach because the experience with Catalyst has taught me that needing functions for everything can be annoying. I have the same experience 😆 the thing...