Sequential Quantum Gate Decomposer  v1.9.6
Powerful decomposition of general unitarias into one- and two-qubit gates gates
Namespaces | Functions | Variables
benchmarks/partitioning/gatesupport.py File Reference

Go to the source code of this file.

Namespaces

 gatesupport
 

Functions

def gatesupport.cleanup_repo (temp_dir)
 
def gatesupport.download_and_collect_qasm (repo_urls)
 
def gatesupport.squander_gate_support_check ()
 

Variables

dictionary gatesupport.SUPPORTED_GATES = {x for n in dir(gate) for x in (getattr(gate, n),) if not n.startswith("_") and issubclass(x, gate.Gate) and n != "Gate"}
 
dictionary gatesupport.SUPPORTED_GATES_NAMES = {n for n in dir(gate) if not n.startswith("_") and issubclass(getattr(gate, n), gate.Gate) and n != "Gate"}