This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Advanced Project Features
Marc Davis edited this page Feb 28, 2020
·
17 revisions
There are a few more features that the Project class provides that might be needed. You may need to remove or reset compilations.
myproject.remove_compilation("gate_name") # deletes all data relating to the specified gate and removes it from the project
myproject.reset() # deletes all in-progress or completed compilation data in the project. You may need this if you decide to tweak compiler parameters.
myproject.reset("gate_name") # deletes all in-progress or completed compilation data for the specified gate. You may need this if the compiler does not always find the same solution for your gate.
myproject.clear() # deletes all data from the project, putting it in the same state as a fresh project.
You can also get output in the form of search_compiler.circuits.QuantumStep
objects. More detail on how to use these objects below.
# circuit is a QuantumStep object, and vector is a numpy array of floats, to be used by certain QuantumStep functions
circuit, vector = myproject.get_result("gate_name")
You can use
myproject.status() # to check the overall status of a project
myproject.status(name) # to check the status of a specific circuit in a project
You can configure options that the compiler used by a project using myproject["config_key"] = config_value
. The supported keys are described here.
-
threshold
is afloat
that defines the termination condition of the compilation. The compiler will return when it finds a circuit with aerror_func
value less than this threshold. The default value is1e-10
. -
gateset
is asearch_compiler.gatesets.Gateset
object that is used by the compiler. The default value issearch_compiler.gatesets.QubitCNOTLinear()
. -
error_func
is a distance function that compares twonumpy.matrix
objects. It must returnfloat
values that greater than or equal to zero such that input matrices that are close to the same will result in outputs close to zero. The default value issearch_compiler.utils.matrix_distance_squared
. -
search_type
is astring
that can be set to"breadth"
to perform a breadth-first search, or"greedy"
to perform a greedy search using onlyerror_func
. When set to any other value, including the default, A* search is performed usingheuristic
. -
heuristic
is a function that takes a value fromerror_func
and a search depth, and returns afloat
. It is used to order the priority queue used for searching. Setting this option overridessearch_type
. -
solver
is a solver object as defined insearch_compiler.solver
. It is used to set the numerical optimizer used to solve for circuit parameters. The default issearch_compiler.solver.COBYLA_Solver()
. -
beams
can be sets the number of nodes popped off of the priority queue during each search layer. The default is-1
. Setting a positive value will cause the compiler to examine multiple search paths in parallel, and may result in faster runtimes. Setting a negative value will have the compiler calculate a number of beams to maximize CPU utilization.