Skip to content

Blueqat 0.4.1

Compare
Choose a tag to compare
@gyu-don gyu-don released this 10 Mar 11:39
· 212 commits to master since this release

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.