Skip to content

Blueqat 0.3.10

Compare
Choose a tag to compare
@gyu-don gyu-don released this 19 Sep 12:09
· 418 commits to master since this release

Release Date: 19 Sep. 2019

New features

ignore_global option for numpy and numba backend.

Blueqat ignores global phase of statevectors.
But it makes debugging difficult.
We added ignore_global option to disable ignoring global phase.

Circuit().x[0].phase(0.123)[0].run()
=> array([0.+0.j, 1.+0.j]) Global phase is ignored.

Circuit().x[0].phase(0.123)[0].run(ignore_global=False)
=> array([0. +0.j , 0.99244503+0.12269009j]) Global phase is not ignored.

Related to this change, we will modify global phases for some gates in future release.

Modifications

Modify IBMQ backend for new qiskit

Modify for qiskit~=0.11.1

Modify scipy requirements version

Now, required scipy version is scipy>1.1.0

Install

New install
pip install blueqat

Update
pip install -U blueqat