I would like to plot the optimization of a cost of maximum purity of density matrix. Here are my codes
dev = qml.device("default.mixed", wires = n)
@qml.qnode(dev)
def circuit(rho,thetas):
qml.QubitDensityMatrix(rho, wires = wireList)
qml.adjoint(qml.SpecialUnitary(thetas, wires=wireList))
qml.SpecialUnitary(thetas, wires = wireList)
return qml.density_matrix([0])
@qml.qnode(dev)
def purity(thetas):
'''
Initializes a density matrix and takes its purity.
'''
qml.QubitDensityMatrix(circuit(rho,thetas), wires=0)
return qml.purity(0)
# def fidi(thetas,pure_density_matrix):
# '''
# Initializes a the reference state and evaluates its purity of the desired state
# '''
# return qml.math.fidelity(pure_density_matrix,qml.QubitDensityMatrix(circuit(rho,thetas), wires=0))
def cost(thetas):
'''
Computes linear entropy from purity.
'''
return 1 - purity(thetas)
I would like to maximize the purity of denstiy matrix so minimizing the cost as follows:
thetas = jnp.array(thetas)
minimize(purity, thetas, method='BFGS', jac=jax.grad(cost, argnums=0))
How to show this in the plot that cost function minimizes.