├── .DS_Store ├── GRAPHINE_disc_comp.py ├── README.md ├── aod_count_changing_results ├── adder_9 │ ├── adder_9_10_res.pkl │ ├── adder_9_1_res.pkl │ ├── adder_9_20_res.pkl │ ├── adder_9_40_res.pkl │ └── adder_9_5_res.pkl ├── advantage_9 │ ├── advantage_9_10_res.pkl │ ├── advantage_9_1_res.pkl │ ├── advantage_9_20_res.pkl │ ├── advantage_9_40_res.pkl │ └── advantage_9_5_res.pkl ├── gcm_h6_13 │ ├── gcm_h6_13_10_res.pkl │ ├── gcm_h6_13_1_res.pkl │ ├── gcm_h6_13_20_res.pkl │ ├── gcm_h6_13_40_res.pkl │ └── gcm_h6_13_5_res.pkl ├── heisenberg_16 │ ├── heisenberg_16_10_res.pkl │ ├── heisenberg_16_1_res.pkl │ ├── heisenberg_16_20_res.pkl │ ├── heisenberg_16_40_res.pkl │ └── heisenberg_16_5_res.pkl ├── hlf_10 │ ├── hlf_10_10_res.pkl │ ├── hlf_10_1_res.pkl │ ├── hlf_10_20_res.pkl │ ├── hlf_10_40_res.pkl │ └── hlf_10_5_res.pkl ├── knn_n25 │ ├── knn_n25_10_res.pkl │ ├── knn_n25_1_res.pkl │ ├── knn_n25_20_res.pkl │ ├── knn_n25_40_res.pkl │ └── knn_n25_5_res.pkl ├── multiplier_10 │ ├── multiplier_10_10_res.pkl │ ├── multiplier_10_1_res.pkl │ ├── multiplier_10_20_res.pkl │ ├── multiplier_10_40_res.pkl │ └── multiplier_10_5_res.pkl ├── qaoa_10 │ ├── qaoa_10_10_res.pkl │ ├── qaoa_10_1_res.pkl │ ├── qaoa_10_20_res.pkl │ ├── qaoa_10_40_res.pkl │ └── qaoa_10_5_res.pkl ├── qec9xz_n17 │ ├── qec9xz_n17_10_res.pkl │ ├── qec9xz_n17_1_res.pkl │ ├── qec9xz_n17_20_res.pkl │ ├── qec9xz_n17_40_res.pkl │ └── qec9xz_n17_5_res.pkl ├── qft_10 │ ├── qft_10_10_res.pkl │ ├── qft_10_1_res.pkl │ ├── qft_10_20_res.pkl │ ├── qft_10_40_res.pkl │ └── qft_10_5_res.pkl ├── qugan_n39 │ ├── qugan_n39_10_res.pkl │ ├── qugan_n39_1_res.pkl │ ├── qugan_n39_20_res.pkl │ ├── qugan_n39_40_res.pkl │ └── qugan_n39_5_res.pkl ├── qv_32 │ ├── qv_32_10_res.pkl │ ├── qv_32_1_res.pkl │ ├── qv_32_20_res.pkl │ ├── qv_32_40_res.pkl │ └── qv_32_5_res.pkl ├── sat_11 │ ├── sat_11_10_res.pkl │ ├── sat_11_1_res.pkl │ ├── sat_11_20_res.pkl │ ├── sat_11_40_res.pkl │ └── sat_11_5_res.pkl ├── seca_n11 │ ├── seca_n11_10_res.pkl │ ├── seca_n11_1_res.pkl │ ├── seca_n11_20_res.pkl │ ├── seca_n11_40_res.pkl │ └── seca_n11_5_res.pkl ├── sqrt_18 │ ├── sqrt_18_10_res.pkl │ ├── sqrt_18_1_res.pkl │ ├── sqrt_18_20_res.pkl │ ├── sqrt_18_40_res.pkl │ └── sqrt_18_5_res.pkl ├── tfim_128 │ ├── tfim_128_10_res.pkl │ ├── tfim_128_1_res.pkl │ ├── tfim_128_20_res.pkl │ ├── tfim_128_40_res.pkl │ └── tfim_128_5_res.pkl ├── vqe_uccsd_n28 │ ├── vqe_uccsd_n28_10_res.pkl │ ├── vqe_uccsd_n28_1_res.pkl │ ├── vqe_uccsd_n28_20_res.pkl │ ├── vqe_uccsd_n28_40_res.pkl │ └── vqe_uccsd_n28_5_res.pkl └── wstate_27 │ ├── wstate_27_10_res.pkl │ ├── wstate_27_1_res.pkl │ ├── wstate_27_20_res.pkl │ ├── wstate_27_40_res.pkl │ └── wstate_27_5_res.pkl ├── benchmarks ├── adder_9.qasm ├── advantage_9.qasm ├── gcm_h6_13.qasm ├── heisenberg_16.qasm ├── hlf_10.qasm ├── knn_n25.qasm ├── multiplier_10.qasm ├── qaoa_10.qasm ├── qec9xz_n17.qasm ├── qft_10.qasm ├── qugan_n39.qasm ├── qv_32.qasm ├── sat_11.qasm ├── seca_n11.qasm ├── sqrt_18.qasm ├── tfim_128.qasm ├── vqe_uccsd_n28.qasm └── wstate_27.qasm ├── disc_eldi_results ├── atom │ ├── adder_9_res.pkl │ ├── advantage_9_res.pkl │ ├── gcm_h6_13_res.pkl │ ├── heisenberg_16_res.pkl │ ├── hlf_10_res.pkl │ ├── knn_n25_res.pkl │ ├── multiplier_10_res.pkl │ ├── qaoa_10_res.pkl │ ├── qec9xz_n17_res.pkl │ ├── qft_10_res.pkl │ ├── qugan_n39_res.pkl │ ├── qv_32_res.pkl │ ├── sat_11_res.pkl │ ├── seca_n11_res.pkl │ ├── sqrt_18_res.pkl │ ├── tfim_128_res.pkl │ └── wstate_27_res.pkl └── quera │ ├── adder_9_res.pkl │ ├── advantage_9_res.pkl │ ├── gcm_h6_13_res.pkl │ ├── heisenberg_16_res.pkl │ ├── hlf_10_res.pkl │ ├── knn_n25_res.pkl │ ├── multiplier_10_res.pkl │ ├── qaoa_10_res.pkl │ ├── qec9xz_n17_res.pkl │ ├── qft_10_res.pkl │ ├── qugan_n39_res.pkl │ ├── qv_32_res.pkl │ ├── sat_11_res.pkl │ ├── seca_n11_res.pkl │ ├── sqrt_18_res.pkl │ ├── tfim_128_res.pkl │ └── wstate_27_res.pkl ├── disc_graphine_results └── atom │ ├── adder_9_res.pkl │ ├── advantage_9_res.pkl │ ├── gcm_h6_13_res.pkl │ ├── heisenberg_16_res.pkl │ ├── hlf_10_res.pkl │ ├── knn_n25_res.pkl │ ├── multiplier_10_res.pkl │ ├── qaoa_10_res.pkl │ ├── qec9xz_n17_res.pkl │ ├── qft_10_res.pkl │ ├── qugan_n39_res.pkl │ ├── qv_32_res.pkl │ ├── sat_11_res.pkl │ ├── seca_n11_res.pkl │ ├── sqrt_18_res.pkl │ ├── tfim_128_res.pkl │ ├── vqe_uccsd_n28_res.pkl │ └── wstate_27_res.pkl ├── eldi_compile.py ├── eldi_compile_par.py ├── eldi_disc_comp.py ├── eldi_par_data ├── advantage_9 │ ├── 100_3.qasm │ ├── 121_3.qasm │ ├── 16_8.qasm │ ├── 1_35.qasm │ ├── 25_7.qasm │ ├── 36_5.qasm │ ├── 49_5.qasm │ ├── 4_17.qasm │ ├── 64_4.qasm │ ├── 81_3.qasm │ └── 9_11.qasm ├── knn_n25 │ ├── 16_8.qasm │ ├── 1_35.qasm │ ├── 25_7.qasm │ ├── 36_5.qasm │ ├── 49_5.qasm │ ├── 4_17.qasm │ └── 9_11.qasm ├── qv_32 │ ├── 16_8.qasm │ ├── 1_35.qasm │ ├── 25_7.qasm │ ├── 4_17.qasm │ └── 9_11.qasm ├── seca_n11 │ ├── 16_8.qasm │ ├── 1_35.qasm │ ├── 25_7.qasm │ ├── 36_5.qasm │ ├── 49_5.qasm │ ├── 4_17.qasm │ ├── 64_4.qasm │ └── 9_11.qasm ├── sqrt_18 │ ├── 16_8.qasm │ ├── 1_35.qasm │ ├── 25_7.qasm │ ├── 36_5.qasm │ ├── 49_5.qasm │ ├── 4_17.qasm │ └── 9_11.qasm └── wstate_27 │ ├── 16_8.qasm │ ├── 1_35.qasm │ ├── 25_7.qasm │ ├── 4_17.qasm │ └── 9_11.qasm ├── eldi_res └── eldi_res_atom.pkl ├── figures ├── .DS_Store └── Atom │ ├── .DS_Store │ └── .gitkeep ├── graph_gen.py ├── graphine.py ├── graphine_discretized_compilation.py ├── graphine_discretized_compilation_par.py ├── graphine_results ├── adder_9_res.pkl ├── advantage_9_res.pkl ├── gcm_h6_13_res.pkl ├── heisenberg_16_res.pkl ├── hlf_10_res.pkl ├── knn_n25_res.pkl ├── multiplier_10_res.pkl ├── qaoa_10_res.pkl ├── qec9xz_n17_res.pkl ├── qft_10_res.pkl ├── qugan_n39_res.pkl ├── qv_32_res.pkl ├── sat_11_res.pkl ├── seca_n11_res.pkl ├── sqrt_18_res.pkl ├── tfim_128_res.pkl ├── vqe_uccsd_n28_res.pkl └── wstate_27_res.pkl ├── mobile_qubits.py ├── na_arch.py ├── na_arch_aod_ch.py ├── na_arch_no_home.py ├── neutral-atom-compilation ├── .DS_Store ├── README.md ├── build │ └── lib │ │ └── neutralatomcompilation │ │ ├── __init__.py │ │ ├── bakermain.py │ │ ├── compiler │ │ ├── __init__.py │ │ ├── compiler.py │ │ ├── lookahead_compiler.py │ │ ├── lookahead_compiler_constrained.py │ │ └── parallel_lookahead_compiler_constrained.py │ │ ├── eldi_generate_data.py │ │ ├── error_models │ │ ├── __init__.py │ │ └── error_model.py │ │ ├── experimenting │ │ ├── __init__.py │ │ └── metrics.py │ │ ├── hardware │ │ ├── __init__.py │ │ └── hardware.py │ │ ├── interaction_model │ │ ├── __init__.py │ │ └── interaction_model.py │ │ └── utilities │ │ ├── __init__.py │ │ ├── circuit_formats.py │ │ ├── circuit_stats.py │ │ ├── decompose_swaps.py │ │ └── reroute.py ├── neutralatomcompilation.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── requires.txt │ └── top_level.txt ├── neutralatomcompilation │ ├── .DS_Store │ ├── benchmarks_retrans │ │ ├── adder_9.qasm │ │ ├── advantage_9.qasm │ │ ├── gcm_h6_13.qasm │ │ ├── heisenberg_16.qasm │ │ ├── hlf_10.qasm │ │ ├── knn_n25.qasm │ │ ├── multiplier_10.qasm │ │ ├── qaoa_10.qasm │ │ ├── qec9xz_n17.qasm │ │ ├── qft_10.qasm │ │ ├── qugan_n39.qasm │ │ ├── qv_32.qasm │ │ ├── sat_11.qasm │ │ ├── seca_n11.qasm │ │ ├── sqrt_18.qasm │ │ ├── tfim_128.qasm │ │ └── wstate_27.qasm │ ├── benchmarks_retrans_par │ │ ├── advantage_9.qasm │ │ ├── knn_n25.qasm │ │ ├── qv_32.qasm │ │ ├── seca_n11.qasm │ │ ├── sqrt_18.qasm │ │ └── wstate_27.qasm │ ├── compiler │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ ├── compiler.cpython-311.pyc │ │ │ ├── lookahead_compiler.cpython-311.pyc │ │ │ ├── lookahead_compiler_constrained.cpython-311.pyc │ │ │ └── parallel_lookahead_compiler_constrained.cpython-311.pyc │ │ ├── compiler.py │ │ ├── lookahead_compiler.py │ │ ├── lookahead_compiler_constrained.py │ │ └── parallel_lookahead_compiler_constrained.py │ ├── eldi_generate_data.py │ ├── error_models │ │ ├── __init__.py │ │ └── error_model.py │ ├── experimenting │ │ ├── __init__.py │ │ └── metrics.py │ ├── hardware │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ └── hardware.cpython-311.pyc │ │ └── hardware.py │ ├── interaction_model │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ └── interaction_model.cpython-311.pyc │ │ └── interaction_model.py │ ├── par_results │ │ ├── advantage_9 │ │ │ ├── 100_3.qasm │ │ │ ├── 121_3.qasm │ │ │ ├── 16_8.qasm │ │ │ ├── 1_35.qasm │ │ │ ├── 25_7.qasm │ │ │ ├── 36_5.qasm │ │ │ ├── 49_5.qasm │ │ │ ├── 4_17.qasm │ │ │ ├── 64_4.qasm │ │ │ ├── 81_3.qasm │ │ │ └── 9_11.qasm │ │ ├── knn_n25 │ │ │ ├── 16_8.qasm │ │ │ ├── 1_35.qasm │ │ │ ├── 25_7.qasm │ │ │ ├── 36_5.qasm │ │ │ ├── 49_5.qasm │ │ │ ├── 4_17.qasm │ │ │ └── 9_11.qasm │ │ ├── qv_32 │ │ │ ├── 16_8.qasm │ │ │ ├── 1_35.qasm │ │ │ ├── 25_7.qasm │ │ │ ├── 4_17.qasm │ │ │ └── 9_11.qasm │ │ ├── seca_n11 │ │ │ ├── 16_8.qasm │ │ │ ├── 1_35.qasm │ │ │ ├── 25_7.qasm │ │ │ ├── 36_5.qasm │ │ │ ├── 49_5.qasm │ │ │ ├── 4_17.qasm │ │ │ ├── 64_4.qasm │ │ │ └── 9_11.qasm │ │ ├── sqrt_18 │ │ │ ├── 16_8.qasm │ │ │ ├── 1_35.qasm │ │ │ ├── 25_7.qasm │ │ │ ├── 36_5.qasm │ │ │ ├── 49_5.qasm │ │ │ ├── 4_17.qasm │ │ │ └── 9_11.qasm │ │ └── wstate_27 │ │ │ ├── 16_8.qasm │ │ │ ├── 1_35.qasm │ │ │ ├── 25_7.qasm │ │ │ ├── 4_17.qasm │ │ │ └── 9_11.qasm │ └── utilities │ │ ├── __init__.py │ │ ├── circuit_formats.py │ │ ├── circuit_stats.py │ │ ├── decompose_swaps.py │ │ └── reroute.py └── setup.py ├── par_eldi_res ├── advantage_9 │ ├── 100_3.pkl │ ├── 121_3.pkl │ ├── 16_8.pkl │ ├── 1_35.pkl │ ├── 25_7.pkl │ ├── 36_5.pkl │ ├── 49_5.pkl │ ├── 4_17.pkl │ ├── 64_4.pkl │ ├── 81_3.pkl │ └── 9_11.pkl ├── knn_n25 │ ├── 16_8.pkl │ ├── 1_35.pkl │ ├── 25_7.pkl │ ├── 36_5.pkl │ ├── 49_5.pkl │ ├── 4_17.pkl │ └── 9_11.pkl ├── qv_32 │ ├── 16_8.pkl │ ├── 1_35.pkl │ ├── 25_7.pkl │ ├── 4_17.pkl │ └── 9_11.pkl ├── seca_n11 │ ├── 16_8.pkl │ ├── 1_35.pkl │ ├── 25_7.pkl │ ├── 36_5.pkl │ ├── 49_5.pkl │ ├── 4_17.pkl │ ├── 64_4.pkl │ └── 9_11.pkl ├── sqrt_18 │ ├── 16_8.pkl │ ├── 1_35.pkl │ ├── 25_7.pkl │ ├── 36_5.pkl │ ├── 49_5.pkl │ ├── 4_17.pkl │ └── 9_11.pkl └── wstate_27 │ ├── 16_8.pkl │ ├── 1_35.pkl │ ├── 25_7.pkl │ ├── 4_17.pkl │ └── 9_11.pkl ├── par_graphine_res ├── advantage_9 │ ├── 100_3.pkl │ ├── 121_3.pkl │ ├── 16_8.pkl │ ├── 1_35.pkl │ ├── 25_7.pkl │ ├── 36_5.pkl │ ├── 49_5.pkl │ ├── 4_17.pkl │ ├── 64_4.pkl │ ├── 81_3.pkl │ └── 9_11.pkl ├── knn_n25 │ ├── 16_8.pkl │ ├── 1_35.pkl │ ├── 25_7.pkl │ ├── 36_5.pkl │ ├── 49_5.pkl │ ├── 4_17.pkl │ └── 9_11.pkl ├── qv_32 │ ├── 16_8.pkl │ ├── 1_35.pkl │ ├── 25_7.pkl │ ├── 4_17.pkl │ └── 9_11.pkl ├── seca_n11 │ ├── 16_8.pkl │ ├── 1_35.pkl │ ├── 25_7.pkl │ ├── 36_5.pkl │ ├── 49_5.pkl │ ├── 4_17.pkl │ ├── 64_4.pkl │ └── 9_11.pkl ├── sqrt_18 │ ├── 16_8.pkl │ ├── 1_35.pkl │ ├── 25_7.pkl │ ├── 36_5.pkl │ ├── 49_5.pkl │ ├── 4_17.pkl │ └── 9_11.pkl └── wstate_27 │ ├── 16_8.pkl │ ├── 1_35.pkl │ ├── 25_7.pkl │ ├── 4_17.pkl │ └── 9_11.pkl ├── parallax_par_res ├── advantage_9 │ ├── 100_3_res.pkl │ ├── 121_3_res.pkl │ ├── 16_8_res.pkl │ ├── 1_35_res.pkl │ ├── 25_7_res.pkl │ ├── 36_5_res.pkl │ ├── 49_5_res.pkl │ ├── 4_17_res.pkl │ ├── 64_4_res.pkl │ ├── 81_3_res.pkl │ └── 9_11_res.pkl ├── knn_n25 │ ├── 16_8_res.pkl │ ├── 1_35_res.pkl │ ├── 25_7_res.pkl │ ├── 36_5_res.pkl │ ├── 49_5_res.pkl │ ├── 4_17_res.pkl │ └── 9_11_res.pkl ├── qv_32 │ ├── 16_8_res.pkl │ ├── 1_35_res.pkl │ ├── 25_7_res.pkl │ ├── 4_17_res.pkl │ └── 9_11_res.pkl ├── seca_n11 │ ├── 16_8_res.pkl │ ├── 1_35_res.pkl │ ├── 25_7_res.pkl │ ├── 36_5_res.pkl │ ├── 49_5_res.pkl │ ├── 4_17_res.pkl │ ├── 64_4_res.pkl │ └── 9_11_res.pkl ├── sqrt_18 │ ├── 16_8_res.pkl │ ├── 1_35_res.pkl │ ├── 25_7_res.pkl │ ├── 36_5_res.pkl │ ├── 49_5_res.pkl │ ├── 4_17_res.pkl │ └── 9_11_res.pkl └── wstate_27 │ ├── 16_8_res.pkl │ ├── 1_35_res.pkl │ ├── 25_7_res.pkl │ ├── 4_17_res.pkl │ └── 9_11_res.pkl ├── parallax_results └── atom │ ├── adder_9_res.pkl │ ├── advantage_9_res.pkl │ ├── gcm_h6_13_res.pkl │ ├── heisenberg_16_res.pkl │ ├── hlf_10_res.pkl │ ├── knn_n25_res.pkl │ ├── multiplier_10_res.pkl │ ├── qaoa_10_res.pkl │ ├── qec9xz_n17_res.pkl │ ├── qft_10_res.pkl │ ├── qugan_n39_res.pkl │ ├── qv_32_res.pkl │ ├── sat_11_res.pkl │ ├── seca_n11_res.pkl │ ├── sqrt_18_res.pkl │ ├── tfim_128_res.pkl │ ├── vqe_uccsd_n28_res.pkl │ └── wstate_27_res.pkl ├── requirements.txt ├── results_no_home └── atom │ ├── adder_9_res.pkl │ ├── advantage_9_res.pkl │ ├── gcm_h6_13_res.pkl │ ├── heisenberg_16_res.pkl │ ├── hlf_10_res.pkl │ ├── knn_n25_res.pkl │ ├── multiplier_10_res.pkl │ ├── qaoa_10_res.pkl │ ├── qec9xz_n17_res.pkl │ ├── qft_10_res.pkl │ ├── qugan_n39_res.pkl │ ├── qv_32_res.pkl │ ├── sat_11_res.pkl │ ├── seca_n11_res.pkl │ ├── sqrt_18_res.pkl │ ├── tfim_128_res.pkl │ ├── vqe_uccsd_n28_res.pkl │ └── wstate_27_res.pkl ├── run_aod_ablation.py ├── run_baseline.py ├── run_no_home.py └── run_parallel.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/.DS_Store -------------------------------------------------------------------------------- /GRAPHINE_disc_comp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/GRAPHINE_disc_comp.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/README.md -------------------------------------------------------------------------------- /aod_count_changing_results/adder_9/adder_9_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/adder_9/adder_9_10_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/adder_9/adder_9_1_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/adder_9/adder_9_1_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/adder_9/adder_9_20_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/adder_9/adder_9_20_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/adder_9/adder_9_40_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/adder_9/adder_9_40_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/adder_9/adder_9_5_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/adder_9/adder_9_5_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/advantage_9/advantage_9_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/advantage_9/advantage_9_10_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/advantage_9/advantage_9_1_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/advantage_9/advantage_9_1_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/advantage_9/advantage_9_20_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/advantage_9/advantage_9_20_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/advantage_9/advantage_9_40_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/advantage_9/advantage_9_40_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/advantage_9/advantage_9_5_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/advantage_9/advantage_9_5_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/gcm_h6_13/gcm_h6_13_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/gcm_h6_13/gcm_h6_13_10_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/gcm_h6_13/gcm_h6_13_1_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/gcm_h6_13/gcm_h6_13_1_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/gcm_h6_13/gcm_h6_13_20_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/gcm_h6_13/gcm_h6_13_20_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/gcm_h6_13/gcm_h6_13_40_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/gcm_h6_13/gcm_h6_13_40_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/gcm_h6_13/gcm_h6_13_5_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/gcm_h6_13/gcm_h6_13_5_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/heisenberg_16/heisenberg_16_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/heisenberg_16/heisenberg_16_10_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/heisenberg_16/heisenberg_16_1_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/heisenberg_16/heisenberg_16_1_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/heisenberg_16/heisenberg_16_20_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/heisenberg_16/heisenberg_16_20_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/heisenberg_16/heisenberg_16_40_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/heisenberg_16/heisenberg_16_40_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/heisenberg_16/heisenberg_16_5_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/heisenberg_16/heisenberg_16_5_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/hlf_10/hlf_10_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/hlf_10/hlf_10_10_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/hlf_10/hlf_10_1_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/hlf_10/hlf_10_1_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/hlf_10/hlf_10_20_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/hlf_10/hlf_10_20_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/hlf_10/hlf_10_40_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/hlf_10/hlf_10_40_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/hlf_10/hlf_10_5_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/hlf_10/hlf_10_5_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/knn_n25/knn_n25_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/knn_n25/knn_n25_10_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/knn_n25/knn_n25_1_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/knn_n25/knn_n25_1_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/knn_n25/knn_n25_20_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/knn_n25/knn_n25_20_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/knn_n25/knn_n25_40_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/knn_n25/knn_n25_40_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/knn_n25/knn_n25_5_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/knn_n25/knn_n25_5_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/multiplier_10/multiplier_10_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/multiplier_10/multiplier_10_10_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/multiplier_10/multiplier_10_1_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/multiplier_10/multiplier_10_1_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/multiplier_10/multiplier_10_20_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/multiplier_10/multiplier_10_20_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/multiplier_10/multiplier_10_40_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/multiplier_10/multiplier_10_40_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/multiplier_10/multiplier_10_5_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/multiplier_10/multiplier_10_5_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/qaoa_10/qaoa_10_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/qaoa_10/qaoa_10_10_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/qaoa_10/qaoa_10_1_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/qaoa_10/qaoa_10_1_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/qaoa_10/qaoa_10_20_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/qaoa_10/qaoa_10_20_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/qaoa_10/qaoa_10_40_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/qaoa_10/qaoa_10_40_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/qaoa_10/qaoa_10_5_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/qaoa_10/qaoa_10_5_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/qec9xz_n17/qec9xz_n17_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/qec9xz_n17/qec9xz_n17_10_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/qec9xz_n17/qec9xz_n17_1_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/qec9xz_n17/qec9xz_n17_1_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/qec9xz_n17/qec9xz_n17_20_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/qec9xz_n17/qec9xz_n17_20_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/qec9xz_n17/qec9xz_n17_40_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/qec9xz_n17/qec9xz_n17_40_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/qec9xz_n17/qec9xz_n17_5_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/qec9xz_n17/qec9xz_n17_5_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/qft_10/qft_10_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/qft_10/qft_10_10_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/qft_10/qft_10_1_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/qft_10/qft_10_1_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/qft_10/qft_10_20_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/qft_10/qft_10_20_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/qft_10/qft_10_40_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/qft_10/qft_10_40_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/qft_10/qft_10_5_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/qft_10/qft_10_5_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/qugan_n39/qugan_n39_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/qugan_n39/qugan_n39_10_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/qugan_n39/qugan_n39_1_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/qugan_n39/qugan_n39_1_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/qugan_n39/qugan_n39_20_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/qugan_n39/qugan_n39_20_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/qugan_n39/qugan_n39_40_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/qugan_n39/qugan_n39_40_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/qugan_n39/qugan_n39_5_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/qugan_n39/qugan_n39_5_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/qv_32/qv_32_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/qv_32/qv_32_10_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/qv_32/qv_32_1_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/qv_32/qv_32_1_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/qv_32/qv_32_20_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/qv_32/qv_32_20_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/qv_32/qv_32_40_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/qv_32/qv_32_40_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/qv_32/qv_32_5_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/qv_32/qv_32_5_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/sat_11/sat_11_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/sat_11/sat_11_10_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/sat_11/sat_11_1_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/sat_11/sat_11_1_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/sat_11/sat_11_20_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/sat_11/sat_11_20_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/sat_11/sat_11_40_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/sat_11/sat_11_40_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/sat_11/sat_11_5_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/sat_11/sat_11_5_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/seca_n11/seca_n11_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/seca_n11/seca_n11_10_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/seca_n11/seca_n11_1_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/seca_n11/seca_n11_1_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/seca_n11/seca_n11_20_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/seca_n11/seca_n11_20_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/seca_n11/seca_n11_40_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/seca_n11/seca_n11_40_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/seca_n11/seca_n11_5_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/seca_n11/seca_n11_5_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/sqrt_18/sqrt_18_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/sqrt_18/sqrt_18_10_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/sqrt_18/sqrt_18_1_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/sqrt_18/sqrt_18_1_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/sqrt_18/sqrt_18_20_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/sqrt_18/sqrt_18_20_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/sqrt_18/sqrt_18_40_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/sqrt_18/sqrt_18_40_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/sqrt_18/sqrt_18_5_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/sqrt_18/sqrt_18_5_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/tfim_128/tfim_128_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/tfim_128/tfim_128_10_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/tfim_128/tfim_128_1_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/tfim_128/tfim_128_1_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/tfim_128/tfim_128_20_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/tfim_128/tfim_128_20_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/tfim_128/tfim_128_40_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/tfim_128/tfim_128_40_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/tfim_128/tfim_128_5_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/tfim_128/tfim_128_5_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/vqe_uccsd_n28/vqe_uccsd_n28_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/vqe_uccsd_n28/vqe_uccsd_n28_10_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/vqe_uccsd_n28/vqe_uccsd_n28_1_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/vqe_uccsd_n28/vqe_uccsd_n28_1_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/vqe_uccsd_n28/vqe_uccsd_n28_20_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/vqe_uccsd_n28/vqe_uccsd_n28_20_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/vqe_uccsd_n28/vqe_uccsd_n28_40_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/vqe_uccsd_n28/vqe_uccsd_n28_40_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/vqe_uccsd_n28/vqe_uccsd_n28_5_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/vqe_uccsd_n28/vqe_uccsd_n28_5_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/wstate_27/wstate_27_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/wstate_27/wstate_27_10_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/wstate_27/wstate_27_1_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/wstate_27/wstate_27_1_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/wstate_27/wstate_27_20_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/wstate_27/wstate_27_20_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/wstate_27/wstate_27_40_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/wstate_27/wstate_27_40_res.pkl -------------------------------------------------------------------------------- /aod_count_changing_results/wstate_27/wstate_27_5_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/aod_count_changing_results/wstate_27/wstate_27_5_res.pkl -------------------------------------------------------------------------------- /benchmarks/adder_9.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/benchmarks/adder_9.qasm -------------------------------------------------------------------------------- /benchmarks/advantage_9.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/benchmarks/advantage_9.qasm -------------------------------------------------------------------------------- /benchmarks/gcm_h6_13.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/benchmarks/gcm_h6_13.qasm -------------------------------------------------------------------------------- /benchmarks/heisenberg_16.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/benchmarks/heisenberg_16.qasm -------------------------------------------------------------------------------- /benchmarks/hlf_10.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/benchmarks/hlf_10.qasm -------------------------------------------------------------------------------- /benchmarks/knn_n25.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/benchmarks/knn_n25.qasm -------------------------------------------------------------------------------- /benchmarks/multiplier_10.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/benchmarks/multiplier_10.qasm -------------------------------------------------------------------------------- /benchmarks/qaoa_10.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/benchmarks/qaoa_10.qasm -------------------------------------------------------------------------------- /benchmarks/qec9xz_n17.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/benchmarks/qec9xz_n17.qasm -------------------------------------------------------------------------------- /benchmarks/qft_10.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/benchmarks/qft_10.qasm -------------------------------------------------------------------------------- /benchmarks/qugan_n39.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/benchmarks/qugan_n39.qasm -------------------------------------------------------------------------------- /benchmarks/qv_32.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/benchmarks/qv_32.qasm -------------------------------------------------------------------------------- /benchmarks/sat_11.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/benchmarks/sat_11.qasm -------------------------------------------------------------------------------- /benchmarks/seca_n11.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/benchmarks/seca_n11.qasm -------------------------------------------------------------------------------- /benchmarks/sqrt_18.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/benchmarks/sqrt_18.qasm -------------------------------------------------------------------------------- /benchmarks/tfim_128.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/benchmarks/tfim_128.qasm -------------------------------------------------------------------------------- /benchmarks/vqe_uccsd_n28.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/benchmarks/vqe_uccsd_n28.qasm -------------------------------------------------------------------------------- /benchmarks/wstate_27.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/benchmarks/wstate_27.qasm -------------------------------------------------------------------------------- /disc_eldi_results/atom/adder_9_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/atom/adder_9_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/atom/advantage_9_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/atom/advantage_9_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/atom/gcm_h6_13_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/atom/gcm_h6_13_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/atom/heisenberg_16_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/atom/heisenberg_16_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/atom/hlf_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/atom/hlf_10_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/atom/knn_n25_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/atom/knn_n25_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/atom/multiplier_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/atom/multiplier_10_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/atom/qaoa_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/atom/qaoa_10_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/atom/qec9xz_n17_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/atom/qec9xz_n17_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/atom/qft_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/atom/qft_10_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/atom/qugan_n39_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/atom/qugan_n39_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/atom/qv_32_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/atom/qv_32_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/atom/sat_11_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/atom/sat_11_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/atom/seca_n11_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/atom/seca_n11_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/atom/sqrt_18_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/atom/sqrt_18_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/atom/tfim_128_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/atom/tfim_128_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/atom/wstate_27_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/atom/wstate_27_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/quera/adder_9_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/quera/adder_9_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/quera/advantage_9_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/quera/advantage_9_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/quera/gcm_h6_13_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/quera/gcm_h6_13_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/quera/heisenberg_16_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/quera/heisenberg_16_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/quera/hlf_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/quera/hlf_10_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/quera/knn_n25_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/quera/knn_n25_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/quera/multiplier_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/quera/multiplier_10_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/quera/qaoa_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/quera/qaoa_10_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/quera/qec9xz_n17_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/quera/qec9xz_n17_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/quera/qft_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/quera/qft_10_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/quera/qugan_n39_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/quera/qugan_n39_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/quera/qv_32_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/quera/qv_32_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/quera/sat_11_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/quera/sat_11_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/quera/seca_n11_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/quera/seca_n11_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/quera/sqrt_18_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/quera/sqrt_18_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/quera/tfim_128_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/quera/tfim_128_res.pkl -------------------------------------------------------------------------------- /disc_eldi_results/quera/wstate_27_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_eldi_results/quera/wstate_27_res.pkl -------------------------------------------------------------------------------- /disc_graphine_results/atom/adder_9_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_graphine_results/atom/adder_9_res.pkl -------------------------------------------------------------------------------- /disc_graphine_results/atom/advantage_9_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_graphine_results/atom/advantage_9_res.pkl -------------------------------------------------------------------------------- /disc_graphine_results/atom/gcm_h6_13_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_graphine_results/atom/gcm_h6_13_res.pkl -------------------------------------------------------------------------------- /disc_graphine_results/atom/heisenberg_16_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_graphine_results/atom/heisenberg_16_res.pkl -------------------------------------------------------------------------------- /disc_graphine_results/atom/hlf_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_graphine_results/atom/hlf_10_res.pkl -------------------------------------------------------------------------------- /disc_graphine_results/atom/knn_n25_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_graphine_results/atom/knn_n25_res.pkl -------------------------------------------------------------------------------- /disc_graphine_results/atom/multiplier_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_graphine_results/atom/multiplier_10_res.pkl -------------------------------------------------------------------------------- /disc_graphine_results/atom/qaoa_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_graphine_results/atom/qaoa_10_res.pkl -------------------------------------------------------------------------------- /disc_graphine_results/atom/qec9xz_n17_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_graphine_results/atom/qec9xz_n17_res.pkl -------------------------------------------------------------------------------- /disc_graphine_results/atom/qft_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_graphine_results/atom/qft_10_res.pkl -------------------------------------------------------------------------------- /disc_graphine_results/atom/qugan_n39_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_graphine_results/atom/qugan_n39_res.pkl -------------------------------------------------------------------------------- /disc_graphine_results/atom/qv_32_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_graphine_results/atom/qv_32_res.pkl -------------------------------------------------------------------------------- /disc_graphine_results/atom/sat_11_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_graphine_results/atom/sat_11_res.pkl -------------------------------------------------------------------------------- /disc_graphine_results/atom/seca_n11_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_graphine_results/atom/seca_n11_res.pkl -------------------------------------------------------------------------------- /disc_graphine_results/atom/sqrt_18_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_graphine_results/atom/sqrt_18_res.pkl -------------------------------------------------------------------------------- /disc_graphine_results/atom/tfim_128_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_graphine_results/atom/tfim_128_res.pkl -------------------------------------------------------------------------------- /disc_graphine_results/atom/vqe_uccsd_n28_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_graphine_results/atom/vqe_uccsd_n28_res.pkl -------------------------------------------------------------------------------- /disc_graphine_results/atom/wstate_27_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/disc_graphine_results/atom/wstate_27_res.pkl -------------------------------------------------------------------------------- /eldi_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_compile.py -------------------------------------------------------------------------------- /eldi_compile_par.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_compile_par.py -------------------------------------------------------------------------------- /eldi_disc_comp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_disc_comp.py -------------------------------------------------------------------------------- /eldi_par_data/advantage_9/100_3.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/advantage_9/100_3.qasm -------------------------------------------------------------------------------- /eldi_par_data/advantage_9/121_3.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/advantage_9/121_3.qasm -------------------------------------------------------------------------------- /eldi_par_data/advantage_9/16_8.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/advantage_9/16_8.qasm -------------------------------------------------------------------------------- /eldi_par_data/advantage_9/1_35.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/advantage_9/1_35.qasm -------------------------------------------------------------------------------- /eldi_par_data/advantage_9/25_7.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/advantage_9/25_7.qasm -------------------------------------------------------------------------------- /eldi_par_data/advantage_9/36_5.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/advantage_9/36_5.qasm -------------------------------------------------------------------------------- /eldi_par_data/advantage_9/49_5.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/advantage_9/49_5.qasm -------------------------------------------------------------------------------- /eldi_par_data/advantage_9/4_17.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/advantage_9/4_17.qasm -------------------------------------------------------------------------------- /eldi_par_data/advantage_9/64_4.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/advantage_9/64_4.qasm -------------------------------------------------------------------------------- /eldi_par_data/advantage_9/81_3.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/advantage_9/81_3.qasm -------------------------------------------------------------------------------- /eldi_par_data/advantage_9/9_11.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/advantage_9/9_11.qasm -------------------------------------------------------------------------------- /eldi_par_data/knn_n25/16_8.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/knn_n25/16_8.qasm -------------------------------------------------------------------------------- /eldi_par_data/knn_n25/1_35.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/knn_n25/1_35.qasm -------------------------------------------------------------------------------- /eldi_par_data/knn_n25/25_7.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/knn_n25/25_7.qasm -------------------------------------------------------------------------------- /eldi_par_data/knn_n25/36_5.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/knn_n25/36_5.qasm -------------------------------------------------------------------------------- /eldi_par_data/knn_n25/49_5.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/knn_n25/49_5.qasm -------------------------------------------------------------------------------- /eldi_par_data/knn_n25/4_17.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/knn_n25/4_17.qasm -------------------------------------------------------------------------------- /eldi_par_data/knn_n25/9_11.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/knn_n25/9_11.qasm -------------------------------------------------------------------------------- /eldi_par_data/qv_32/16_8.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/qv_32/16_8.qasm -------------------------------------------------------------------------------- /eldi_par_data/qv_32/1_35.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/qv_32/1_35.qasm -------------------------------------------------------------------------------- /eldi_par_data/qv_32/25_7.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/qv_32/25_7.qasm -------------------------------------------------------------------------------- /eldi_par_data/qv_32/4_17.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/qv_32/4_17.qasm -------------------------------------------------------------------------------- /eldi_par_data/qv_32/9_11.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/qv_32/9_11.qasm -------------------------------------------------------------------------------- /eldi_par_data/seca_n11/16_8.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/seca_n11/16_8.qasm -------------------------------------------------------------------------------- /eldi_par_data/seca_n11/1_35.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/seca_n11/1_35.qasm -------------------------------------------------------------------------------- /eldi_par_data/seca_n11/25_7.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/seca_n11/25_7.qasm -------------------------------------------------------------------------------- /eldi_par_data/seca_n11/36_5.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/seca_n11/36_5.qasm -------------------------------------------------------------------------------- /eldi_par_data/seca_n11/49_5.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/seca_n11/49_5.qasm -------------------------------------------------------------------------------- /eldi_par_data/seca_n11/4_17.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/seca_n11/4_17.qasm -------------------------------------------------------------------------------- /eldi_par_data/seca_n11/64_4.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/seca_n11/64_4.qasm -------------------------------------------------------------------------------- /eldi_par_data/seca_n11/9_11.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/seca_n11/9_11.qasm -------------------------------------------------------------------------------- /eldi_par_data/sqrt_18/16_8.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/sqrt_18/16_8.qasm -------------------------------------------------------------------------------- /eldi_par_data/sqrt_18/1_35.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/sqrt_18/1_35.qasm -------------------------------------------------------------------------------- /eldi_par_data/sqrt_18/25_7.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/sqrt_18/25_7.qasm -------------------------------------------------------------------------------- /eldi_par_data/sqrt_18/36_5.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/sqrt_18/36_5.qasm -------------------------------------------------------------------------------- /eldi_par_data/sqrt_18/49_5.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/sqrt_18/49_5.qasm -------------------------------------------------------------------------------- /eldi_par_data/sqrt_18/4_17.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/sqrt_18/4_17.qasm -------------------------------------------------------------------------------- /eldi_par_data/sqrt_18/9_11.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/sqrt_18/9_11.qasm -------------------------------------------------------------------------------- /eldi_par_data/wstate_27/16_8.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/wstate_27/16_8.qasm -------------------------------------------------------------------------------- /eldi_par_data/wstate_27/1_35.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/wstate_27/1_35.qasm -------------------------------------------------------------------------------- /eldi_par_data/wstate_27/25_7.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/wstate_27/25_7.qasm -------------------------------------------------------------------------------- /eldi_par_data/wstate_27/4_17.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/wstate_27/4_17.qasm -------------------------------------------------------------------------------- /eldi_par_data/wstate_27/9_11.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_par_data/wstate_27/9_11.qasm -------------------------------------------------------------------------------- /eldi_res/eldi_res_atom.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/eldi_res/eldi_res_atom.pkl -------------------------------------------------------------------------------- /figures/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/figures/.DS_Store -------------------------------------------------------------------------------- /figures/Atom/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/figures/Atom/.DS_Store -------------------------------------------------------------------------------- /figures/Atom/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graph_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/graph_gen.py -------------------------------------------------------------------------------- /graphine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/graphine.py -------------------------------------------------------------------------------- /graphine_discretized_compilation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/graphine_discretized_compilation.py -------------------------------------------------------------------------------- /graphine_discretized_compilation_par.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/graphine_discretized_compilation_par.py -------------------------------------------------------------------------------- /graphine_results/adder_9_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/graphine_results/adder_9_res.pkl -------------------------------------------------------------------------------- /graphine_results/advantage_9_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/graphine_results/advantage_9_res.pkl -------------------------------------------------------------------------------- /graphine_results/gcm_h6_13_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/graphine_results/gcm_h6_13_res.pkl -------------------------------------------------------------------------------- /graphine_results/heisenberg_16_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/graphine_results/heisenberg_16_res.pkl -------------------------------------------------------------------------------- /graphine_results/hlf_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/graphine_results/hlf_10_res.pkl -------------------------------------------------------------------------------- /graphine_results/knn_n25_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/graphine_results/knn_n25_res.pkl -------------------------------------------------------------------------------- /graphine_results/multiplier_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/graphine_results/multiplier_10_res.pkl -------------------------------------------------------------------------------- /graphine_results/qaoa_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/graphine_results/qaoa_10_res.pkl -------------------------------------------------------------------------------- /graphine_results/qec9xz_n17_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/graphine_results/qec9xz_n17_res.pkl -------------------------------------------------------------------------------- /graphine_results/qft_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/graphine_results/qft_10_res.pkl -------------------------------------------------------------------------------- /graphine_results/qugan_n39_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/graphine_results/qugan_n39_res.pkl -------------------------------------------------------------------------------- /graphine_results/qv_32_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/graphine_results/qv_32_res.pkl -------------------------------------------------------------------------------- /graphine_results/sat_11_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/graphine_results/sat_11_res.pkl -------------------------------------------------------------------------------- /graphine_results/seca_n11_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/graphine_results/seca_n11_res.pkl -------------------------------------------------------------------------------- /graphine_results/sqrt_18_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/graphine_results/sqrt_18_res.pkl -------------------------------------------------------------------------------- /graphine_results/tfim_128_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/graphine_results/tfim_128_res.pkl -------------------------------------------------------------------------------- /graphine_results/vqe_uccsd_n28_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/graphine_results/vqe_uccsd_n28_res.pkl -------------------------------------------------------------------------------- /graphine_results/wstate_27_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/graphine_results/wstate_27_res.pkl -------------------------------------------------------------------------------- /mobile_qubits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/mobile_qubits.py -------------------------------------------------------------------------------- /na_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/na_arch.py -------------------------------------------------------------------------------- /na_arch_aod_ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/na_arch_aod_ch.py -------------------------------------------------------------------------------- /na_arch_no_home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/na_arch_no_home.py -------------------------------------------------------------------------------- /neutral-atom-compilation/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/.DS_Store -------------------------------------------------------------------------------- /neutral-atom-compilation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/README.md -------------------------------------------------------------------------------- /neutral-atom-compilation/build/lib/neutralatomcompilation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/build/lib/neutralatomcompilation/__init__.py -------------------------------------------------------------------------------- /neutral-atom-compilation/build/lib/neutralatomcompilation/bakermain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/build/lib/neutralatomcompilation/bakermain.py -------------------------------------------------------------------------------- /neutral-atom-compilation/build/lib/neutralatomcompilation/compiler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/build/lib/neutralatomcompilation/compiler/__init__.py -------------------------------------------------------------------------------- /neutral-atom-compilation/build/lib/neutralatomcompilation/compiler/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/build/lib/neutralatomcompilation/compiler/compiler.py -------------------------------------------------------------------------------- /neutral-atom-compilation/build/lib/neutralatomcompilation/compiler/lookahead_compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/build/lib/neutralatomcompilation/compiler/lookahead_compiler.py -------------------------------------------------------------------------------- /neutral-atom-compilation/build/lib/neutralatomcompilation/compiler/lookahead_compiler_constrained.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/build/lib/neutralatomcompilation/compiler/lookahead_compiler_constrained.py -------------------------------------------------------------------------------- /neutral-atom-compilation/build/lib/neutralatomcompilation/compiler/parallel_lookahead_compiler_constrained.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/build/lib/neutralatomcompilation/compiler/parallel_lookahead_compiler_constrained.py -------------------------------------------------------------------------------- /neutral-atom-compilation/build/lib/neutralatomcompilation/eldi_generate_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/build/lib/neutralatomcompilation/eldi_generate_data.py -------------------------------------------------------------------------------- /neutral-atom-compilation/build/lib/neutralatomcompilation/error_models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/build/lib/neutralatomcompilation/error_models/__init__.py -------------------------------------------------------------------------------- /neutral-atom-compilation/build/lib/neutralatomcompilation/error_models/error_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/build/lib/neutralatomcompilation/error_models/error_model.py -------------------------------------------------------------------------------- /neutral-atom-compilation/build/lib/neutralatomcompilation/experimenting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/build/lib/neutralatomcompilation/experimenting/__init__.py -------------------------------------------------------------------------------- /neutral-atom-compilation/build/lib/neutralatomcompilation/experimenting/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/build/lib/neutralatomcompilation/experimenting/metrics.py -------------------------------------------------------------------------------- /neutral-atom-compilation/build/lib/neutralatomcompilation/hardware/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/build/lib/neutralatomcompilation/hardware/__init__.py -------------------------------------------------------------------------------- /neutral-atom-compilation/build/lib/neutralatomcompilation/hardware/hardware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/build/lib/neutralatomcompilation/hardware/hardware.py -------------------------------------------------------------------------------- /neutral-atom-compilation/build/lib/neutralatomcompilation/interaction_model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/build/lib/neutralatomcompilation/interaction_model/__init__.py -------------------------------------------------------------------------------- /neutral-atom-compilation/build/lib/neutralatomcompilation/interaction_model/interaction_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/build/lib/neutralatomcompilation/interaction_model/interaction_model.py -------------------------------------------------------------------------------- /neutral-atom-compilation/build/lib/neutralatomcompilation/utilities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/build/lib/neutralatomcompilation/utilities/__init__.py -------------------------------------------------------------------------------- /neutral-atom-compilation/build/lib/neutralatomcompilation/utilities/circuit_formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/build/lib/neutralatomcompilation/utilities/circuit_formats.py -------------------------------------------------------------------------------- /neutral-atom-compilation/build/lib/neutralatomcompilation/utilities/circuit_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/build/lib/neutralatomcompilation/utilities/circuit_stats.py -------------------------------------------------------------------------------- /neutral-atom-compilation/build/lib/neutralatomcompilation/utilities/decompose_swaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/build/lib/neutralatomcompilation/utilities/decompose_swaps.py -------------------------------------------------------------------------------- /neutral-atom-compilation/build/lib/neutralatomcompilation/utilities/reroute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/build/lib/neutralatomcompilation/utilities/reroute.py -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation.egg-info/PKG-INFO -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | scipy 3 | matplotlib 4 | qutip 5 | qiskit 6 | networkx 7 | -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/.DS_Store -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/adder_9.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/adder_9.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/advantage_9.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/advantage_9.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/gcm_h6_13.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/gcm_h6_13.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/heisenberg_16.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/heisenberg_16.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/hlf_10.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/hlf_10.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/knn_n25.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/knn_n25.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/multiplier_10.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/multiplier_10.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/qaoa_10.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/qaoa_10.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/qec9xz_n17.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/qec9xz_n17.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/qft_10.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/qft_10.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/qugan_n39.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/qugan_n39.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/qv_32.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/qv_32.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/sat_11.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/sat_11.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/seca_n11.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/seca_n11.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/sqrt_18.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/sqrt_18.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/tfim_128.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/tfim_128.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/wstate_27.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans/wstate_27.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans_par/advantage_9.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans_par/advantage_9.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans_par/knn_n25.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans_par/knn_n25.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans_par/qv_32.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans_par/qv_32.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans_par/seca_n11.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans_par/seca_n11.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans_par/sqrt_18.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans_par/sqrt_18.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans_par/wstate_27.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/benchmarks_retrans_par/wstate_27.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/compiler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/compiler/__init__.py -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/compiler/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/compiler/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/compiler/__pycache__/compiler.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/compiler/__pycache__/compiler.cpython-311.pyc -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/compiler/__pycache__/lookahead_compiler.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/compiler/__pycache__/lookahead_compiler.cpython-311.pyc -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/compiler/__pycache__/lookahead_compiler_constrained.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/compiler/__pycache__/lookahead_compiler_constrained.cpython-311.pyc -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/compiler/__pycache__/parallel_lookahead_compiler_constrained.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/compiler/__pycache__/parallel_lookahead_compiler_constrained.cpython-311.pyc -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/compiler/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/compiler/compiler.py -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/compiler/lookahead_compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/compiler/lookahead_compiler.py -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/compiler/lookahead_compiler_constrained.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/compiler/lookahead_compiler_constrained.py -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/compiler/parallel_lookahead_compiler_constrained.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/compiler/parallel_lookahead_compiler_constrained.py -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/eldi_generate_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/eldi_generate_data.py -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/error_models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/error_models/__init__.py -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/error_models/error_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/error_models/error_model.py -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/experimenting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/experimenting/__init__.py -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/experimenting/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/experimenting/metrics.py -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/hardware/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/hardware/__init__.py -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/hardware/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/hardware/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/hardware/__pycache__/hardware.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/hardware/__pycache__/hardware.cpython-311.pyc -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/hardware/hardware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/hardware/hardware.py -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/interaction_model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/interaction_model/__init__.py -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/interaction_model/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/interaction_model/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/interaction_model/__pycache__/interaction_model.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/interaction_model/__pycache__/interaction_model.cpython-311.pyc -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/interaction_model/interaction_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/interaction_model/interaction_model.py -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/advantage_9/100_3.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/advantage_9/100_3.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/advantage_9/121_3.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/advantage_9/121_3.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/advantage_9/16_8.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/advantage_9/16_8.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/advantage_9/1_35.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/advantage_9/1_35.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/advantage_9/25_7.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/advantage_9/25_7.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/advantage_9/36_5.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/advantage_9/36_5.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/advantage_9/49_5.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/advantage_9/49_5.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/advantage_9/4_17.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/advantage_9/4_17.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/advantage_9/64_4.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/advantage_9/64_4.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/advantage_9/81_3.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/advantage_9/81_3.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/advantage_9/9_11.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/advantage_9/9_11.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/knn_n25/16_8.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/knn_n25/16_8.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/knn_n25/1_35.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/knn_n25/1_35.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/knn_n25/25_7.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/knn_n25/25_7.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/knn_n25/36_5.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/knn_n25/36_5.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/knn_n25/49_5.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/knn_n25/49_5.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/knn_n25/4_17.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/knn_n25/4_17.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/knn_n25/9_11.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/knn_n25/9_11.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/qv_32/16_8.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/qv_32/16_8.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/qv_32/1_35.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/qv_32/1_35.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/qv_32/25_7.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/qv_32/25_7.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/qv_32/4_17.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/qv_32/4_17.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/qv_32/9_11.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/qv_32/9_11.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/seca_n11/16_8.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/seca_n11/16_8.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/seca_n11/1_35.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/seca_n11/1_35.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/seca_n11/25_7.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/seca_n11/25_7.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/seca_n11/36_5.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/seca_n11/36_5.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/seca_n11/49_5.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/seca_n11/49_5.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/seca_n11/4_17.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/seca_n11/4_17.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/seca_n11/64_4.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/seca_n11/64_4.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/seca_n11/9_11.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/seca_n11/9_11.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/sqrt_18/16_8.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/sqrt_18/16_8.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/sqrt_18/1_35.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/sqrt_18/1_35.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/sqrt_18/25_7.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/sqrt_18/25_7.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/sqrt_18/36_5.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/sqrt_18/36_5.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/sqrt_18/49_5.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/sqrt_18/49_5.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/sqrt_18/4_17.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/sqrt_18/4_17.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/sqrt_18/9_11.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/sqrt_18/9_11.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/wstate_27/16_8.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/wstate_27/16_8.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/wstate_27/1_35.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/wstate_27/1_35.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/wstate_27/25_7.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/wstate_27/25_7.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/wstate_27/4_17.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/wstate_27/4_17.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/par_results/wstate_27/9_11.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/par_results/wstate_27/9_11.qasm -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/utilities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/utilities/__init__.py -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/utilities/circuit_formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/utilities/circuit_formats.py -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/utilities/circuit_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/utilities/circuit_stats.py -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/utilities/decompose_swaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/utilities/decompose_swaps.py -------------------------------------------------------------------------------- /neutral-atom-compilation/neutralatomcompilation/utilities/reroute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/neutralatomcompilation/utilities/reroute.py -------------------------------------------------------------------------------- /neutral-atom-compilation/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/neutral-atom-compilation/setup.py -------------------------------------------------------------------------------- /par_eldi_res/advantage_9/100_3.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/advantage_9/100_3.pkl -------------------------------------------------------------------------------- /par_eldi_res/advantage_9/121_3.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/advantage_9/121_3.pkl -------------------------------------------------------------------------------- /par_eldi_res/advantage_9/16_8.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/advantage_9/16_8.pkl -------------------------------------------------------------------------------- /par_eldi_res/advantage_9/1_35.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/advantage_9/1_35.pkl -------------------------------------------------------------------------------- /par_eldi_res/advantage_9/25_7.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/advantage_9/25_7.pkl -------------------------------------------------------------------------------- /par_eldi_res/advantage_9/36_5.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/advantage_9/36_5.pkl -------------------------------------------------------------------------------- /par_eldi_res/advantage_9/49_5.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/advantage_9/49_5.pkl -------------------------------------------------------------------------------- /par_eldi_res/advantage_9/4_17.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/advantage_9/4_17.pkl -------------------------------------------------------------------------------- /par_eldi_res/advantage_9/64_4.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/advantage_9/64_4.pkl -------------------------------------------------------------------------------- /par_eldi_res/advantage_9/81_3.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/advantage_9/81_3.pkl -------------------------------------------------------------------------------- /par_eldi_res/advantage_9/9_11.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/advantage_9/9_11.pkl -------------------------------------------------------------------------------- /par_eldi_res/knn_n25/16_8.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/knn_n25/16_8.pkl -------------------------------------------------------------------------------- /par_eldi_res/knn_n25/1_35.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/knn_n25/1_35.pkl -------------------------------------------------------------------------------- /par_eldi_res/knn_n25/25_7.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/knn_n25/25_7.pkl -------------------------------------------------------------------------------- /par_eldi_res/knn_n25/36_5.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/knn_n25/36_5.pkl -------------------------------------------------------------------------------- /par_eldi_res/knn_n25/49_5.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/knn_n25/49_5.pkl -------------------------------------------------------------------------------- /par_eldi_res/knn_n25/4_17.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/knn_n25/4_17.pkl -------------------------------------------------------------------------------- /par_eldi_res/knn_n25/9_11.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/knn_n25/9_11.pkl -------------------------------------------------------------------------------- /par_eldi_res/qv_32/16_8.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/qv_32/16_8.pkl -------------------------------------------------------------------------------- /par_eldi_res/qv_32/1_35.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/qv_32/1_35.pkl -------------------------------------------------------------------------------- /par_eldi_res/qv_32/25_7.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/qv_32/25_7.pkl -------------------------------------------------------------------------------- /par_eldi_res/qv_32/4_17.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/qv_32/4_17.pkl -------------------------------------------------------------------------------- /par_eldi_res/qv_32/9_11.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/qv_32/9_11.pkl -------------------------------------------------------------------------------- /par_eldi_res/seca_n11/16_8.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/seca_n11/16_8.pkl -------------------------------------------------------------------------------- /par_eldi_res/seca_n11/1_35.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/seca_n11/1_35.pkl -------------------------------------------------------------------------------- /par_eldi_res/seca_n11/25_7.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/seca_n11/25_7.pkl -------------------------------------------------------------------------------- /par_eldi_res/seca_n11/36_5.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/seca_n11/36_5.pkl -------------------------------------------------------------------------------- /par_eldi_res/seca_n11/49_5.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/seca_n11/49_5.pkl -------------------------------------------------------------------------------- /par_eldi_res/seca_n11/4_17.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/seca_n11/4_17.pkl -------------------------------------------------------------------------------- /par_eldi_res/seca_n11/64_4.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/seca_n11/64_4.pkl -------------------------------------------------------------------------------- /par_eldi_res/seca_n11/9_11.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/seca_n11/9_11.pkl -------------------------------------------------------------------------------- /par_eldi_res/sqrt_18/16_8.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/sqrt_18/16_8.pkl -------------------------------------------------------------------------------- /par_eldi_res/sqrt_18/1_35.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/sqrt_18/1_35.pkl -------------------------------------------------------------------------------- /par_eldi_res/sqrt_18/25_7.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/sqrt_18/25_7.pkl -------------------------------------------------------------------------------- /par_eldi_res/sqrt_18/36_5.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/sqrt_18/36_5.pkl -------------------------------------------------------------------------------- /par_eldi_res/sqrt_18/49_5.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/sqrt_18/49_5.pkl -------------------------------------------------------------------------------- /par_eldi_res/sqrt_18/4_17.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/sqrt_18/4_17.pkl -------------------------------------------------------------------------------- /par_eldi_res/sqrt_18/9_11.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/sqrt_18/9_11.pkl -------------------------------------------------------------------------------- /par_eldi_res/wstate_27/16_8.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/wstate_27/16_8.pkl -------------------------------------------------------------------------------- /par_eldi_res/wstate_27/1_35.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/wstate_27/1_35.pkl -------------------------------------------------------------------------------- /par_eldi_res/wstate_27/25_7.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/wstate_27/25_7.pkl -------------------------------------------------------------------------------- /par_eldi_res/wstate_27/4_17.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/wstate_27/4_17.pkl -------------------------------------------------------------------------------- /par_eldi_res/wstate_27/9_11.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_eldi_res/wstate_27/9_11.pkl -------------------------------------------------------------------------------- /par_graphine_res/advantage_9/100_3.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/advantage_9/100_3.pkl -------------------------------------------------------------------------------- /par_graphine_res/advantage_9/121_3.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/advantage_9/121_3.pkl -------------------------------------------------------------------------------- /par_graphine_res/advantage_9/16_8.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/advantage_9/16_8.pkl -------------------------------------------------------------------------------- /par_graphine_res/advantage_9/1_35.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/advantage_9/1_35.pkl -------------------------------------------------------------------------------- /par_graphine_res/advantage_9/25_7.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/advantage_9/25_7.pkl -------------------------------------------------------------------------------- /par_graphine_res/advantage_9/36_5.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/advantage_9/36_5.pkl -------------------------------------------------------------------------------- /par_graphine_res/advantage_9/49_5.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/advantage_9/49_5.pkl -------------------------------------------------------------------------------- /par_graphine_res/advantage_9/4_17.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/advantage_9/4_17.pkl -------------------------------------------------------------------------------- /par_graphine_res/advantage_9/64_4.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/advantage_9/64_4.pkl -------------------------------------------------------------------------------- /par_graphine_res/advantage_9/81_3.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/advantage_9/81_3.pkl -------------------------------------------------------------------------------- /par_graphine_res/advantage_9/9_11.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/advantage_9/9_11.pkl -------------------------------------------------------------------------------- /par_graphine_res/knn_n25/16_8.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/knn_n25/16_8.pkl -------------------------------------------------------------------------------- /par_graphine_res/knn_n25/1_35.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/knn_n25/1_35.pkl -------------------------------------------------------------------------------- /par_graphine_res/knn_n25/25_7.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/knn_n25/25_7.pkl -------------------------------------------------------------------------------- /par_graphine_res/knn_n25/36_5.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/knn_n25/36_5.pkl -------------------------------------------------------------------------------- /par_graphine_res/knn_n25/49_5.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/knn_n25/49_5.pkl -------------------------------------------------------------------------------- /par_graphine_res/knn_n25/4_17.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/knn_n25/4_17.pkl -------------------------------------------------------------------------------- /par_graphine_res/knn_n25/9_11.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/knn_n25/9_11.pkl -------------------------------------------------------------------------------- /par_graphine_res/qv_32/16_8.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/qv_32/16_8.pkl -------------------------------------------------------------------------------- /par_graphine_res/qv_32/1_35.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/qv_32/1_35.pkl -------------------------------------------------------------------------------- /par_graphine_res/qv_32/25_7.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/qv_32/25_7.pkl -------------------------------------------------------------------------------- /par_graphine_res/qv_32/4_17.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/qv_32/4_17.pkl -------------------------------------------------------------------------------- /par_graphine_res/qv_32/9_11.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/qv_32/9_11.pkl -------------------------------------------------------------------------------- /par_graphine_res/seca_n11/16_8.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/seca_n11/16_8.pkl -------------------------------------------------------------------------------- /par_graphine_res/seca_n11/1_35.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/seca_n11/1_35.pkl -------------------------------------------------------------------------------- /par_graphine_res/seca_n11/25_7.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/seca_n11/25_7.pkl -------------------------------------------------------------------------------- /par_graphine_res/seca_n11/36_5.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/seca_n11/36_5.pkl -------------------------------------------------------------------------------- /par_graphine_res/seca_n11/49_5.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/seca_n11/49_5.pkl -------------------------------------------------------------------------------- /par_graphine_res/seca_n11/4_17.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/seca_n11/4_17.pkl -------------------------------------------------------------------------------- /par_graphine_res/seca_n11/64_4.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/seca_n11/64_4.pkl -------------------------------------------------------------------------------- /par_graphine_res/seca_n11/9_11.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/seca_n11/9_11.pkl -------------------------------------------------------------------------------- /par_graphine_res/sqrt_18/16_8.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/sqrt_18/16_8.pkl -------------------------------------------------------------------------------- /par_graphine_res/sqrt_18/1_35.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/sqrt_18/1_35.pkl -------------------------------------------------------------------------------- /par_graphine_res/sqrt_18/25_7.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/sqrt_18/25_7.pkl -------------------------------------------------------------------------------- /par_graphine_res/sqrt_18/36_5.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/sqrt_18/36_5.pkl -------------------------------------------------------------------------------- /par_graphine_res/sqrt_18/49_5.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/sqrt_18/49_5.pkl -------------------------------------------------------------------------------- /par_graphine_res/sqrt_18/4_17.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/sqrt_18/4_17.pkl -------------------------------------------------------------------------------- /par_graphine_res/sqrt_18/9_11.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/sqrt_18/9_11.pkl -------------------------------------------------------------------------------- /par_graphine_res/wstate_27/16_8.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/wstate_27/16_8.pkl -------------------------------------------------------------------------------- /par_graphine_res/wstate_27/1_35.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/wstate_27/1_35.pkl -------------------------------------------------------------------------------- /par_graphine_res/wstate_27/25_7.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/wstate_27/25_7.pkl -------------------------------------------------------------------------------- /par_graphine_res/wstate_27/4_17.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/wstate_27/4_17.pkl -------------------------------------------------------------------------------- /par_graphine_res/wstate_27/9_11.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/par_graphine_res/wstate_27/9_11.pkl -------------------------------------------------------------------------------- /parallax_par_res/advantage_9/100_3_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/advantage_9/100_3_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/advantage_9/121_3_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/advantage_9/121_3_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/advantage_9/16_8_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/advantage_9/16_8_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/advantage_9/1_35_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/advantage_9/1_35_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/advantage_9/25_7_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/advantage_9/25_7_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/advantage_9/36_5_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/advantage_9/36_5_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/advantage_9/49_5_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/advantage_9/49_5_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/advantage_9/4_17_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/advantage_9/4_17_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/advantage_9/64_4_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/advantage_9/64_4_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/advantage_9/81_3_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/advantage_9/81_3_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/advantage_9/9_11_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/advantage_9/9_11_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/knn_n25/16_8_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/knn_n25/16_8_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/knn_n25/1_35_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/knn_n25/1_35_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/knn_n25/25_7_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/knn_n25/25_7_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/knn_n25/36_5_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/knn_n25/36_5_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/knn_n25/49_5_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/knn_n25/49_5_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/knn_n25/4_17_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/knn_n25/4_17_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/knn_n25/9_11_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/knn_n25/9_11_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/qv_32/16_8_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/qv_32/16_8_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/qv_32/1_35_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/qv_32/1_35_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/qv_32/25_7_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/qv_32/25_7_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/qv_32/4_17_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/qv_32/4_17_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/qv_32/9_11_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/qv_32/9_11_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/seca_n11/16_8_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/seca_n11/16_8_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/seca_n11/1_35_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/seca_n11/1_35_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/seca_n11/25_7_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/seca_n11/25_7_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/seca_n11/36_5_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/seca_n11/36_5_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/seca_n11/49_5_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/seca_n11/49_5_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/seca_n11/4_17_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/seca_n11/4_17_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/seca_n11/64_4_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/seca_n11/64_4_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/seca_n11/9_11_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/seca_n11/9_11_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/sqrt_18/16_8_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/sqrt_18/16_8_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/sqrt_18/1_35_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/sqrt_18/1_35_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/sqrt_18/25_7_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/sqrt_18/25_7_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/sqrt_18/36_5_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/sqrt_18/36_5_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/sqrt_18/49_5_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/sqrt_18/49_5_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/sqrt_18/4_17_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/sqrt_18/4_17_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/sqrt_18/9_11_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/sqrt_18/9_11_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/wstate_27/16_8_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/wstate_27/16_8_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/wstate_27/1_35_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/wstate_27/1_35_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/wstate_27/25_7_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/wstate_27/25_7_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/wstate_27/4_17_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/wstate_27/4_17_res.pkl -------------------------------------------------------------------------------- /parallax_par_res/wstate_27/9_11_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_par_res/wstate_27/9_11_res.pkl -------------------------------------------------------------------------------- /parallax_results/atom/adder_9_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_results/atom/adder_9_res.pkl -------------------------------------------------------------------------------- /parallax_results/atom/advantage_9_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_results/atom/advantage_9_res.pkl -------------------------------------------------------------------------------- /parallax_results/atom/gcm_h6_13_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_results/atom/gcm_h6_13_res.pkl -------------------------------------------------------------------------------- /parallax_results/atom/heisenberg_16_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_results/atom/heisenberg_16_res.pkl -------------------------------------------------------------------------------- /parallax_results/atom/hlf_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_results/atom/hlf_10_res.pkl -------------------------------------------------------------------------------- /parallax_results/atom/knn_n25_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_results/atom/knn_n25_res.pkl -------------------------------------------------------------------------------- /parallax_results/atom/multiplier_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_results/atom/multiplier_10_res.pkl -------------------------------------------------------------------------------- /parallax_results/atom/qaoa_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_results/atom/qaoa_10_res.pkl -------------------------------------------------------------------------------- /parallax_results/atom/qec9xz_n17_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_results/atom/qec9xz_n17_res.pkl -------------------------------------------------------------------------------- /parallax_results/atom/qft_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_results/atom/qft_10_res.pkl -------------------------------------------------------------------------------- /parallax_results/atom/qugan_n39_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_results/atom/qugan_n39_res.pkl -------------------------------------------------------------------------------- /parallax_results/atom/qv_32_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_results/atom/qv_32_res.pkl -------------------------------------------------------------------------------- /parallax_results/atom/sat_11_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_results/atom/sat_11_res.pkl -------------------------------------------------------------------------------- /parallax_results/atom/seca_n11_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_results/atom/seca_n11_res.pkl -------------------------------------------------------------------------------- /parallax_results/atom/sqrt_18_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_results/atom/sqrt_18_res.pkl -------------------------------------------------------------------------------- /parallax_results/atom/tfim_128_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_results/atom/tfim_128_res.pkl -------------------------------------------------------------------------------- /parallax_results/atom/vqe_uccsd_n28_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_results/atom/vqe_uccsd_n28_res.pkl -------------------------------------------------------------------------------- /parallax_results/atom/wstate_27_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/parallax_results/atom/wstate_27_res.pkl -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/requirements.txt -------------------------------------------------------------------------------- /results_no_home/atom/adder_9_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/results_no_home/atom/adder_9_res.pkl -------------------------------------------------------------------------------- /results_no_home/atom/advantage_9_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/results_no_home/atom/advantage_9_res.pkl -------------------------------------------------------------------------------- /results_no_home/atom/gcm_h6_13_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/results_no_home/atom/gcm_h6_13_res.pkl -------------------------------------------------------------------------------- /results_no_home/atom/heisenberg_16_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/results_no_home/atom/heisenberg_16_res.pkl -------------------------------------------------------------------------------- /results_no_home/atom/hlf_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/results_no_home/atom/hlf_10_res.pkl -------------------------------------------------------------------------------- /results_no_home/atom/knn_n25_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/results_no_home/atom/knn_n25_res.pkl -------------------------------------------------------------------------------- /results_no_home/atom/multiplier_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/results_no_home/atom/multiplier_10_res.pkl -------------------------------------------------------------------------------- /results_no_home/atom/qaoa_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/results_no_home/atom/qaoa_10_res.pkl -------------------------------------------------------------------------------- /results_no_home/atom/qec9xz_n17_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/results_no_home/atom/qec9xz_n17_res.pkl -------------------------------------------------------------------------------- /results_no_home/atom/qft_10_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/results_no_home/atom/qft_10_res.pkl -------------------------------------------------------------------------------- /results_no_home/atom/qugan_n39_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/results_no_home/atom/qugan_n39_res.pkl -------------------------------------------------------------------------------- /results_no_home/atom/qv_32_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/results_no_home/atom/qv_32_res.pkl -------------------------------------------------------------------------------- /results_no_home/atom/sat_11_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/results_no_home/atom/sat_11_res.pkl -------------------------------------------------------------------------------- /results_no_home/atom/seca_n11_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/results_no_home/atom/seca_n11_res.pkl -------------------------------------------------------------------------------- /results_no_home/atom/sqrt_18_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/results_no_home/atom/sqrt_18_res.pkl -------------------------------------------------------------------------------- /results_no_home/atom/tfim_128_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/results_no_home/atom/tfim_128_res.pkl -------------------------------------------------------------------------------- /results_no_home/atom/vqe_uccsd_n28_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/results_no_home/atom/vqe_uccsd_n28_res.pkl -------------------------------------------------------------------------------- /results_no_home/atom/wstate_27_res.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/results_no_home/atom/wstate_27_res.pkl -------------------------------------------------------------------------------- /run_aod_ablation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/run_aod_ablation.py -------------------------------------------------------------------------------- /run_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/run_baseline.py -------------------------------------------------------------------------------- /run_no_home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/run_no_home.py -------------------------------------------------------------------------------- /run_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/positivetechnologylab/Parallax/HEAD/run_parallel.py --------------------------------------------------------------------------------