Sequential Quantum Gate Decomposer  v1.9.6
Powerful decomposition of general unitarias into one- and two-qubit gates gates
Classes | Functions | Variables
common Namespace Reference

Classes

class  PlannerCandidate
 
class  SequentialReferenceMeasurement
 

Functions

def _peak_rss_kb ()
 
def _single_pauli_term
 
def _two_pauli_term
 
def base_case_name
 
def build_boundary_evidence ()
 
def build_case_metadata
 
def build_continuity_density_noise ()
 
def build_correctness_evidence_selected_candidate ()
 
def build_correctness_evidence_software_metadata ()
 
def build_correctness_reference_index ()
 
def build_density_comparison_metrics
 
def build_initial_parameters
 
def build_open_chain_topology
 
def build_optimizer_config ()
 
def build_package_software_metadata ()
 
def build_phase2_continuity_vqe
 
def build_phase31_counted_build_metadata ()
 
def build_planner_calibration_planner_candidates
 
def build_planner_candidates
 
def build_selected_candidate ()
 
def build_software_metadata ()
 
def build_validation_slice
 
def build_xxz_hamiltonian
 
def coerce_density_matrix_array
 
def correctness_evidence_output_dir
 
def density_energy
 
def execute_fused_with_reference
 
def execute_partitioned_with_reference
 
def measure_sequential_density_reference
 
def performance_evidence_output_dir
 
def phase31_correctness_evidence_output_dir
 

Variables

string CORRECTNESS_EVIDENCE_CASE_SCHEMA_VERSION = "correctness_evidence_case_record_v2"
 
string CORRECTNESS_EVIDENCE_NEGATIVE_RECORD_SCHEMA_VERSION = "correctness_evidence_negative_record_v2"
 
string CORRECTNESS_EVIDENCE_PHASE31_CASE_SCHEMA_VERSION = "correctness_evidence_phase31_case_record_v1"
 
string CORRECTNESS_EVIDENCE_PHASE31_PACKAGE_SCHEMA_VERSION = "correctness_evidence_phase31_package_v1"
 
string CORRECTNESS_EVIDENCE_PHASE31_SUMMARY_SCHEMA_VERSION = "correctness_evidence_phase31_summary_v1"
 
string CORRECTNESS_EVIDENCE_REFERENCE_BACKEND_EXTERNAL = "qiskit_aer_density_matrix"
 
string CORRECTNESS_EVIDENCE_REFERENCE_BACKEND_INTERNAL = "sequential_density_descriptor_reference"
 
string CORRECTNESS_EVIDENCE_RUNTIME_CLASS_BASELINE = "plain_partitioned_baseline"
 
string CORRECTNESS_EVIDENCE_SUMMARY_SCHEMA_VERSION = "correctness_evidence_summary_v1"
 
string CORRECTNESS_EVIDENCE_VALIDATION_SLICE_INTERNAL_ONLY = "internal_only"
 
string CORRECTNESS_EVIDENCE_VALIDATION_SLICE_INTERNAL_PLUS_EXTERNAL = "internal_plus_external"
 
string CORRECTNESS_PACKAGE_SCHEMA_VERSION = "correctness_evidence_package_v1"
 
string DEFAULT_ANSATZ = "HEA"
 
int DEFAULT_INNER_BLOCKS = 1
 
int DEFAULT_LAYERS = 1
 
tuple DEFAULT_OUTPUT_ROOT
 
 frozen
 
tuple PERFORMANCE_EVIDENCE_ADDITIONAL_STRUCTURED_SEEDS
 
string PERFORMANCE_EVIDENCE_BENCHMARK_PACKAGE_SCHEMA_VERSION = "performance_evidence_package_v1"
 
string PERFORMANCE_EVIDENCE_BENCHMARK_SLICE_CONTINUITY = "continuity_anchor"
 
string PERFORMANCE_EVIDENCE_BENCHMARK_SLICE_STRUCTURED = "structured_performance"
 
string PERFORMANCE_EVIDENCE_CASE_SCHEMA_VERSION = "performance_evidence_record_v1"
 
string PERFORMANCE_EVIDENCE_PHASE31_CASE_SCHEMA_VERSION = "performance_evidence_phase31_record_v1"
 
 PERFORMANCE_EVIDENCE_PRIMARY_STRUCTURED_SEED = DEFAULT_STRUCTURED_SEED
 
string PERFORMANCE_EVIDENCE_REFERENCE_BACKEND_EXTERNAL = "qiskit_aer_density_matrix"
 
string PERFORMANCE_EVIDENCE_REFERENCE_BACKEND_INTERNAL = "sequential_density_descriptor_reference"
 
int PERFORMANCE_EVIDENCE_REPETITIONS = 3
 
string PERFORMANCE_EVIDENCE_REVIEW_NOISE_PATTERN = "sparse"
 
string PERFORMANCE_EVIDENCE_STATUS_COUNTED = "counted_supported"
 
string PERFORMANCE_EVIDENCE_STATUS_DIAGNOSIS_ONLY = "diagnosis_only"
 
string PERFORMANCE_EVIDENCE_STATUS_EXCLUDED = "excluded"
 
string PERFORMANCE_EVIDENCE_STATUS_NOT_REVIEW_CASE = "not_review_case"
 
string PERFORMANCE_EVIDENCE_SUMMARY_SCHEMA_VERSION = "performance_evidence_summary_v1"
 
string PHASE31_CORRECTNESS_EVIDENCE_STAGE_A_ROOT = "phase31_stage_a"
 
string PHASE31_COUNTED_BUILD_FLAVOR = "scalar"
 
string PHASE31_COUNTED_BUILD_POLICY_ID = "phase31_scalar_only_v1"
 
bool PHASE31_COUNTED_CLAIM_BUILD = True
 
bool PHASE31_COUNTED_SIMD_ENABLED = False
 
bool PHASE31_COUNTED_TBB_ENABLED = False
 
int PHASE31_COUNTED_THREAD_COUNT = 1
 
int PHASE3_RUNTIME_DENSITY_TOL = 1e-10
 
int PHASE3_RUNTIME_ENERGY_TOL = 1e-8
 
string PLANNER_CALIBRATION_CANDIDATE_SCHEMA_VERSION = PLANNER_CANDIDATE_SCHEMA_VERSION
 
tuple PLANNER_CALIBRATION_CLAIM_SELECTION_BUNDLE_PATH
 
string PLANNER_CALIBRATION_PLANNER_FAMILY_SPAN_BUDGET = PLANNER_FAMILY_SPAN_BUDGET
 
tuple PLANNER_CALIBRATION_SUPPORTED_CANDIDATE_PARTITION_QUBITS = SUPPORTED_CANDIDATE_PARTITION_QUBITS
 
string PLANNER_CANDIDATE_SCHEMA_VERSION = "phase3_planner_calibration_candidate_v1"
 
string PLANNER_FAMILY_SPAN_BUDGET = "phase3_span_budget"
 
 PlannerCalibrationPlannerCandidate = PlannerCandidate
 
string PRIMARY_BACKEND = "density_matrix"
 
 REPO_ROOT = Path(__file__).resolve().parents[3]
 
 SIGMA_X = sp.sparse.csr_matrix(np.array([[0, 1], [1, 0]], dtype=np.complex128))
 
 SIGMA_Y = sp.sparse.csr_matrix(np.array([[0, -1j], [1j, 0]], dtype=np.complex128))
 
 SIGMA_Z = sp.sparse.csr_matrix(np.array([[1, 0], [0, -1]], dtype=np.complex128))
 
tuple SUPPORTED_CANDIDATE_PARTITION_QUBITS = (2, 3, 4)
 

Function Documentation

◆ _peak_rss_kb()

def common._peak_rss_kb (   int)
private

Definition at line 112 of file performance_evidence/common.py.

Here is the caller graph for this function:

◆ _single_pauli_term()

def common._single_pauli_term (   n_qubits)
private

Definition at line 26 of file planner_surface/common.py.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _two_pauli_term()

def common._two_pauli_term (   n_qubits)
private

Definition at line 36 of file planner_surface/common.py.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ base_case_name()

def common.base_case_name (   workload_id)

Definition at line 110 of file correctness_evidence/common.py.

◆ build_boundary_evidence()

def common.build_boundary_evidence (   tuple,
  dict,
  str,
  Any 
)

Definition at line 103 of file performance_evidence/common.py.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ build_case_metadata()

def common.build_case_metadata (   qbit_num)

Definition at line 106 of file planner_surface/common.py.

Here is the caller graph for this function:

◆ build_continuity_density_noise()

def common.build_continuity_density_noise (   list,
  dict 
)

Definition at line 75 of file planner_surface/common.py.

Here is the caller graph for this function:

◆ build_correctness_evidence_selected_candidate()

def common.build_correctness_evidence_selected_candidate (   dict,
  str,
  Any 
)

Definition at line 102 of file correctness_evidence/common.py.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ build_correctness_evidence_software_metadata()

def common.build_correctness_evidence_software_metadata (   dict,
  str,
  Any 
)

Definition at line 106 of file correctness_evidence/common.py.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ build_correctness_reference_index()

def common.build_correctness_reference_index (   dict,
  str,
  dict,
  str,
  Any 
)

Definition at line 93 of file performance_evidence/common.py.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ build_density_comparison_metrics()

def common.build_density_comparison_metrics (   partitioned_density)

Definition at line 45 of file partitioned_runtime/common.py.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ build_initial_parameters()

def common.build_initial_parameters (   param_num)

Definition at line 29 of file partitioned_runtime/common.py.

◆ build_open_chain_topology()

def common.build_open_chain_topology (   qbit_num)

Definition at line 21 of file planner_surface/common.py.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ build_optimizer_config()

def common.build_optimizer_config (   dict)

Definition at line 98 of file planner_surface/common.py.

Here is the caller graph for this function:

◆ build_package_software_metadata()

def common.build_package_software_metadata (   dict,
  str,
  Any 
)

Definition at line 96 of file correctness_evidence/common.py.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ build_phase2_continuity_vqe()

def common.build_phase2_continuity_vqe (   qbit_num)

Definition at line 127 of file planner_surface/common.py.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ build_phase31_counted_build_metadata()

def common.build_phase31_counted_build_metadata (   dict,
  str,
  Any 
)

Definition at line 74 of file performance_evidence/common.py.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ build_planner_calibration_planner_candidates()

def common.build_planner_calibration_planner_candidates (   max_partition_qubits_values)

Definition at line 67 of file planner_calibration/common.py.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ build_planner_candidates()

def common.build_planner_candidates (   max_partition_qubits_values)

Definition at line 36 of file planner_calibration/common.py.

Here is the caller graph for this function:

◆ build_selected_candidate()

def common.build_selected_candidate (   dict,
  str,
  Any 
)

Definition at line 71 of file correctness_evidence/common.py.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ build_software_metadata()

def common.build_software_metadata (   dict)

Definition at line 118 of file planner_surface/common.py.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ build_validation_slice()

def common.build_validation_slice (   external_reference_required)

Definition at line 114 of file correctness_evidence/common.py.

Here is the caller graph for this function:

◆ build_xxz_hamiltonian()

def common.build_xxz_hamiltonian (   n_qubits)

Definition at line 49 of file planner_surface/common.py.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ coerce_density_matrix_array()

def common.coerce_density_matrix_array (   density_matrix)

Definition at line 38 of file partitioned_runtime/common.py.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ correctness_evidence_output_dir()

def common.correctness_evidence_output_dir (   slice_dir_name)

Definition at line 61 of file correctness_evidence/common.py.

◆ density_energy()

def common.density_energy (   hamiltonian,
  density_matrix 
)

Definition at line 33 of file partitioned_runtime/common.py.

Here is the caller graph for this function:

◆ execute_fused_with_reference()

def common.execute_fused_with_reference (   descriptor_set)

Definition at line 76 of file partitioned_runtime/common.py.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ execute_partitioned_with_reference()

def common.execute_partitioned_with_reference (   descriptor_set)

Definition at line 58 of file partitioned_runtime/common.py.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ measure_sequential_density_reference()

def common.measure_sequential_density_reference (   descriptor_set,
  parameters 
)

Definition at line 126 of file performance_evidence/common.py.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ performance_evidence_output_dir()

def common.performance_evidence_output_dir (   slice_dir_name)

Definition at line 70 of file performance_evidence/common.py.

◆ phase31_correctness_evidence_output_dir()

def common.phase31_correctness_evidence_output_dir (   slice_dir_name)

Definition at line 65 of file correctness_evidence/common.py.

Variable Documentation

◆ CORRECTNESS_EVIDENCE_CASE_SCHEMA_VERSION

string common.CORRECTNESS_EVIDENCE_CASE_SCHEMA_VERSION = "correctness_evidence_case_record_v2"

Definition at line 30 of file correctness_evidence/common.py.

◆ CORRECTNESS_EVIDENCE_NEGATIVE_RECORD_SCHEMA_VERSION

string common.CORRECTNESS_EVIDENCE_NEGATIVE_RECORD_SCHEMA_VERSION = "correctness_evidence_negative_record_v2"

Definition at line 31 of file correctness_evidence/common.py.

◆ CORRECTNESS_EVIDENCE_PHASE31_CASE_SCHEMA_VERSION

string common.CORRECTNESS_EVIDENCE_PHASE31_CASE_SCHEMA_VERSION = "correctness_evidence_phase31_case_record_v1"

Definition at line 36 of file correctness_evidence/common.py.

◆ CORRECTNESS_EVIDENCE_PHASE31_PACKAGE_SCHEMA_VERSION

string common.CORRECTNESS_EVIDENCE_PHASE31_PACKAGE_SCHEMA_VERSION = "correctness_evidence_phase31_package_v1"

Definition at line 37 of file correctness_evidence/common.py.

◆ CORRECTNESS_EVIDENCE_PHASE31_SUMMARY_SCHEMA_VERSION

string common.CORRECTNESS_EVIDENCE_PHASE31_SUMMARY_SCHEMA_VERSION = "correctness_evidence_phase31_summary_v1"

Definition at line 38 of file correctness_evidence/common.py.

◆ CORRECTNESS_EVIDENCE_REFERENCE_BACKEND_EXTERNAL

string common.CORRECTNESS_EVIDENCE_REFERENCE_BACKEND_EXTERNAL = "qiskit_aer_density_matrix"

Definition at line 44 of file correctness_evidence/common.py.

◆ CORRECTNESS_EVIDENCE_REFERENCE_BACKEND_INTERNAL

string common.CORRECTNESS_EVIDENCE_REFERENCE_BACKEND_INTERNAL = "sequential_density_descriptor_reference"

Definition at line 43 of file correctness_evidence/common.py.

◆ CORRECTNESS_EVIDENCE_RUNTIME_CLASS_BASELINE

string common.CORRECTNESS_EVIDENCE_RUNTIME_CLASS_BASELINE = "plain_partitioned_baseline"

Definition at line 45 of file correctness_evidence/common.py.

◆ CORRECTNESS_EVIDENCE_SUMMARY_SCHEMA_VERSION

string common.CORRECTNESS_EVIDENCE_SUMMARY_SCHEMA_VERSION = "correctness_evidence_summary_v1"

Definition at line 33 of file correctness_evidence/common.py.

◆ CORRECTNESS_EVIDENCE_VALIDATION_SLICE_INTERNAL_ONLY

string common.CORRECTNESS_EVIDENCE_VALIDATION_SLICE_INTERNAL_ONLY = "internal_only"

Definition at line 41 of file correctness_evidence/common.py.

◆ CORRECTNESS_EVIDENCE_VALIDATION_SLICE_INTERNAL_PLUS_EXTERNAL

string common.CORRECTNESS_EVIDENCE_VALIDATION_SLICE_INTERNAL_PLUS_EXTERNAL = "internal_plus_external"

Definition at line 42 of file correctness_evidence/common.py.

◆ CORRECTNESS_PACKAGE_SCHEMA_VERSION

string common.CORRECTNESS_PACKAGE_SCHEMA_VERSION = "correctness_evidence_package_v1"

Definition at line 32 of file correctness_evidence/common.py.

◆ DEFAULT_ANSATZ

string common.DEFAULT_ANSATZ = "HEA"

Definition at line 15 of file planner_surface/common.py.

◆ DEFAULT_INNER_BLOCKS

int common.DEFAULT_INNER_BLOCKS = 1

Definition at line 17 of file planner_surface/common.py.

◆ DEFAULT_LAYERS

int common.DEFAULT_LAYERS = 1

Definition at line 16 of file planner_surface/common.py.

◆ DEFAULT_OUTPUT_ROOT

tuple common.DEFAULT_OUTPUT_ROOT
Initial value:
1 = (
2  REPO_ROOT / "benchmarks" / "density_matrix" / "artifacts" / "correctness_evidence"
3 )

Definition at line 47 of file correctness_evidence/common.py.

◆ frozen

common.frozen

Definition at line 11 of file planner_calibration/common.py.

◆ PERFORMANCE_EVIDENCE_ADDITIONAL_STRUCTURED_SEEDS

tuple common.PERFORMANCE_EVIDENCE_ADDITIONAL_STRUCTURED_SEEDS
Initial value:
1 = (
2  DEFAULT_STRUCTURED_SEED + 1,
3  DEFAULT_STRUCTURED_SEED + 2,
4 )

Definition at line 48 of file performance_evidence/common.py.

◆ PERFORMANCE_EVIDENCE_BENCHMARK_PACKAGE_SCHEMA_VERSION

string common.PERFORMANCE_EVIDENCE_BENCHMARK_PACKAGE_SCHEMA_VERSION = "performance_evidence_package_v1"

Definition at line 32 of file performance_evidence/common.py.

◆ PERFORMANCE_EVIDENCE_BENCHMARK_SLICE_CONTINUITY

string common.PERFORMANCE_EVIDENCE_BENCHMARK_SLICE_CONTINUITY = "continuity_anchor"

Definition at line 36 of file performance_evidence/common.py.

◆ PERFORMANCE_EVIDENCE_BENCHMARK_SLICE_STRUCTURED

string common.PERFORMANCE_EVIDENCE_BENCHMARK_SLICE_STRUCTURED = "structured_performance"

Definition at line 37 of file performance_evidence/common.py.

◆ PERFORMANCE_EVIDENCE_CASE_SCHEMA_VERSION

string common.PERFORMANCE_EVIDENCE_CASE_SCHEMA_VERSION = "performance_evidence_record_v1"

Definition at line 31 of file performance_evidence/common.py.

◆ PERFORMANCE_EVIDENCE_PHASE31_CASE_SCHEMA_VERSION

string common.PERFORMANCE_EVIDENCE_PHASE31_CASE_SCHEMA_VERSION = "performance_evidence_phase31_record_v1"

Definition at line 34 of file performance_evidence/common.py.

◆ PERFORMANCE_EVIDENCE_PRIMARY_STRUCTURED_SEED

common.PERFORMANCE_EVIDENCE_PRIMARY_STRUCTURED_SEED = DEFAULT_STRUCTURED_SEED

Definition at line 47 of file performance_evidence/common.py.

◆ PERFORMANCE_EVIDENCE_REFERENCE_BACKEND_EXTERNAL

string common.PERFORMANCE_EVIDENCE_REFERENCE_BACKEND_EXTERNAL = "qiskit_aer_density_matrix"

Definition at line 40 of file performance_evidence/common.py.

◆ PERFORMANCE_EVIDENCE_REFERENCE_BACKEND_INTERNAL

string common.PERFORMANCE_EVIDENCE_REFERENCE_BACKEND_INTERNAL = "sequential_density_descriptor_reference"

Definition at line 39 of file performance_evidence/common.py.

◆ PERFORMANCE_EVIDENCE_REPETITIONS

int common.PERFORMANCE_EVIDENCE_REPETITIONS = 3

Definition at line 53 of file performance_evidence/common.py.

◆ PERFORMANCE_EVIDENCE_REVIEW_NOISE_PATTERN

string common.PERFORMANCE_EVIDENCE_REVIEW_NOISE_PATTERN = "sparse"

Definition at line 52 of file performance_evidence/common.py.

◆ PERFORMANCE_EVIDENCE_STATUS_COUNTED

string common.PERFORMANCE_EVIDENCE_STATUS_COUNTED = "counted_supported"

Definition at line 42 of file performance_evidence/common.py.

◆ PERFORMANCE_EVIDENCE_STATUS_DIAGNOSIS_ONLY

string common.PERFORMANCE_EVIDENCE_STATUS_DIAGNOSIS_ONLY = "diagnosis_only"

Definition at line 43 of file performance_evidence/common.py.

◆ PERFORMANCE_EVIDENCE_STATUS_EXCLUDED

string common.PERFORMANCE_EVIDENCE_STATUS_EXCLUDED = "excluded"

Definition at line 44 of file performance_evidence/common.py.

◆ PERFORMANCE_EVIDENCE_STATUS_NOT_REVIEW_CASE

string common.PERFORMANCE_EVIDENCE_STATUS_NOT_REVIEW_CASE = "not_review_case"

Definition at line 45 of file performance_evidence/common.py.

◆ PERFORMANCE_EVIDENCE_SUMMARY_SCHEMA_VERSION

string common.PERFORMANCE_EVIDENCE_SUMMARY_SCHEMA_VERSION = "performance_evidence_summary_v1"

Definition at line 33 of file performance_evidence/common.py.

◆ PHASE31_CORRECTNESS_EVIDENCE_STAGE_A_ROOT

string common.PHASE31_CORRECTNESS_EVIDENCE_STAGE_A_ROOT = "phase31_stage_a"

Definition at line 39 of file correctness_evidence/common.py.

◆ PHASE31_COUNTED_BUILD_FLAVOR

string common.PHASE31_COUNTED_BUILD_FLAVOR = "scalar"

Definition at line 56 of file performance_evidence/common.py.

◆ PHASE31_COUNTED_BUILD_POLICY_ID

string common.PHASE31_COUNTED_BUILD_POLICY_ID = "phase31_scalar_only_v1"

Definition at line 55 of file performance_evidence/common.py.

◆ PHASE31_COUNTED_CLAIM_BUILD

bool common.PHASE31_COUNTED_CLAIM_BUILD = True

Definition at line 60 of file performance_evidence/common.py.

◆ PHASE31_COUNTED_SIMD_ENABLED

bool common.PHASE31_COUNTED_SIMD_ENABLED = False

Definition at line 57 of file performance_evidence/common.py.

◆ PHASE31_COUNTED_TBB_ENABLED

bool common.PHASE31_COUNTED_TBB_ENABLED = False

Definition at line 58 of file performance_evidence/common.py.

◆ PHASE31_COUNTED_THREAD_COUNT

int common.PHASE31_COUNTED_THREAD_COUNT = 1

Definition at line 59 of file performance_evidence/common.py.

◆ PHASE3_RUNTIME_DENSITY_TOL

int common.PHASE3_RUNTIME_DENSITY_TOL = 1e-10

Definition at line 25 of file partitioned_runtime/common.py.

◆ PHASE3_RUNTIME_ENERGY_TOL

int common.PHASE3_RUNTIME_ENERGY_TOL = 1e-8

Definition at line 26 of file partitioned_runtime/common.py.

◆ PLANNER_CALIBRATION_CANDIDATE_SCHEMA_VERSION

string common.PLANNER_CALIBRATION_CANDIDATE_SCHEMA_VERSION = PLANNER_CANDIDATE_SCHEMA_VERSION

Definition at line 59 of file planner_calibration/common.py.

◆ PLANNER_CALIBRATION_CLAIM_SELECTION_BUNDLE_PATH

tuple common.PLANNER_CALIBRATION_CLAIM_SELECTION_BUNDLE_PATH
Initial value:
1 = (
2  REPO_ROOT
3  / "benchmarks"
4  / "density_matrix"
5  / "artifacts"
6  / "planner_calibration"
7  / "claim_selection"
8  / "claim_selection_bundle.json"
9 )

Definition at line 50 of file correctness_evidence/common.py.

◆ PLANNER_CALIBRATION_PLANNER_FAMILY_SPAN_BUDGET

string common.PLANNER_CALIBRATION_PLANNER_FAMILY_SPAN_BUDGET = PLANNER_FAMILY_SPAN_BUDGET

Definition at line 60 of file planner_calibration/common.py.

◆ PLANNER_CALIBRATION_SUPPORTED_CANDIDATE_PARTITION_QUBITS

tuple common.PLANNER_CALIBRATION_SUPPORTED_CANDIDATE_PARTITION_QUBITS = SUPPORTED_CANDIDATE_PARTITION_QUBITS

Definition at line 61 of file planner_calibration/common.py.

◆ PLANNER_CANDIDATE_SCHEMA_VERSION

string common.PLANNER_CANDIDATE_SCHEMA_VERSION = "phase3_planner_calibration_candidate_v1"

Definition at line 6 of file planner_calibration/common.py.

◆ PLANNER_FAMILY_SPAN_BUDGET

string common.PLANNER_FAMILY_SPAN_BUDGET = "phase3_span_budget"

Definition at line 7 of file planner_calibration/common.py.

◆ PlannerCalibrationPlannerCandidate

common.PlannerCalibrationPlannerCandidate = PlannerCandidate

Definition at line 62 of file planner_calibration/common.py.

◆ PRIMARY_BACKEND

string common.PRIMARY_BACKEND = "density_matrix"

Definition at line 18 of file planner_surface/common.py.

◆ REPO_ROOT

common.REPO_ROOT = Path(__file__).resolve().parents[3]

Definition at line 11 of file correctness_evidence/common.py.

◆ SIGMA_X

common.SIGMA_X = sp.sparse.csr_matrix(np.array([[0, 1], [1, 0]], dtype=np.complex128))

Definition at line 11 of file planner_surface/common.py.

◆ SIGMA_Y

common.SIGMA_Y = sp.sparse.csr_matrix(np.array([[0, -1j], [1j, 0]], dtype=np.complex128))

Definition at line 12 of file planner_surface/common.py.

◆ SIGMA_Z

common.SIGMA_Z = sp.sparse.csr_matrix(np.array([[1, 0], [0, -1]], dtype=np.complex128))

Definition at line 13 of file planner_surface/common.py.

◆ SUPPORTED_CANDIDATE_PARTITION_QUBITS

tuple common.SUPPORTED_CANDIDATE_PARTITION_QUBITS = (2, 3, 4)

Definition at line 8 of file planner_calibration/common.py.