Blueqat 0.4.1
Release Date
Mar. 10, 2021
Enhancement
- Input initial statevector for numpy and numba backend. #101
vec = Circuit(2).x[0].run()
count = Circuit().x[1].m[:].run(initial=vec, shots=100)
# => count is {"11": 100}
Changed
- Cache is not stored after running. If caching is required, use
circuit.run(save_cache=True)
.
Debug
- Correct qgate backend, SWAP gate error.