About cookies on this site Our websites require some cookies to function properly (required). In addition, other cookies may be used with your consent to analyze site usage, improve the user experience and for advertising. For more information, please review your options. By visiting our website, you agree to our processing of information as described in IBM’sprivacy statement. To provide a smooth navigation, your cookie preferences will be shared across the IBM web domains listed here.
qiskit.quantum_info.diamond_norm
diamond_norm(choi, **kwargs)
Return the diamond norm of the input quantum channel object.
This function computes the completely-bounded trace-norm (often referred to as the diamond-norm) of the input quantum channel object using the semidefinite-program from reference [1].
Parameters
- choi (Choi or QuantumChannel) – a quantum channel object or Choi-matrix array.
- kwargs – optional arguments to pass to CVXPY solver.
Returns
The completely-bounded trace norm
.
Return type
float
Raises
QiskitError – if CVXPY package cannot be found.
Additional Information:
The input to this function is typically not a CPTP quantum channel, but rather the difference between two quantum channels where .
Reference:
J. Watrous. “Simpler semidefinite programs for completely bounded norms”, arXiv:1207.5726 [quant-ph] (2012).
Note
This function requires the optional CVXPY package to be installed. Any additional kwargs will be passed to the cvxpy.solve
function. See the CVXPY documentation for information on available SDP solvers.
Was this page helpful?
Report a bug or request content on GitHub.