├── BENCHMARKING.md ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── MANIFEST.in ├── Makefile.Thrust ├── README.md ├── azure-pipelines.yml ├── cmake ├── FindBLAS.cmake.fix-static-linking ├── FindPybind11.cmake ├── FindPythonExtensions.cmake ├── Linter.cmake ├── README.md ├── compiler_utils.cmake ├── conan.cmake ├── conan_utils.cmake ├── dependency_utils.cmake ├── findBLASInSpecificPath.cmake ├── nvcc_add_compiler_options.cmake └── targetLinkLibrariesWithDynamicLookup.cmake ├── constraints.txt ├── contrib └── standalone │ ├── qasm_simulator.cpp │ └── version.hpp.in ├── docs ├── Makefile ├── _static │ └── style.css ├── _templates │ └── autosummary │ │ ├── base.rst │ │ ├── class.rst │ │ └── module.rst ├── apidocs │ ├── aer.rst │ ├── aer_extensions.rst │ ├── aer_noise.rst │ ├── aer_provider.rst │ ├── aer_pulse.rst │ └── aer_utils.rst ├── conf.py ├── images │ └── logo.png ├── index.rst └── release_notes.rst ├── pyproject.toml ├── qiskit ├── __init__.pxd └── providers │ ├── __init__.pxd │ └── aer │ ├── VERSION.txt │ ├── __init__.py │ ├── aererror.py │ ├── aerjob.py │ ├── aerprovider.py │ ├── backends │ ├── __init__.py │ ├── aerbackend.py │ ├── backend_utils.py │ ├── pulse_simulator.py │ ├── qasm_simulator.py │ ├── statevector_simulator.py │ ├── unitary_simulator.py │ └── wrappers │ │ ├── CMakeLists.txt │ │ └── bindings.cc │ ├── extensions │ ├── __init__.py │ ├── snapshot.py │ ├── snapshot_amplitudes.py │ ├── snapshot_density_matrix.py │ ├── snapshot_expectation_value.py │ ├── snapshot_probabilities.py │ ├── snapshot_stabilizer.py │ └── snapshot_statevector.py │ ├── noise │ ├── __init__.py │ ├── device │ │ ├── __init__.py │ │ ├── models.py │ │ └── parameters.py │ ├── errors │ │ ├── __init__.py │ │ ├── errorutils.py │ │ ├── quantum_error.py │ │ ├── readout_error.py │ │ └── standard_errors.py │ ├── noise_model.py │ └── noiseerror.py │ ├── pulse │ ├── __init__.py │ ├── controllers │ │ ├── __init__.py │ │ ├── digest_pulse_qobj.py │ │ ├── mc_controller.py │ │ ├── pulse_controller.py │ │ ├── pulse_de_solver.py │ │ ├── pulse_sim_options.py │ │ └── unitary_controller.py │ ├── de │ │ ├── DE_Methods.py │ │ ├── DE_Options.py │ │ ├── __init__.py │ │ └── type_utils.py │ └── system_models │ │ ├── __init__.py │ │ ├── duffing_model_generators.py │ │ ├── hamiltonian_model.py │ │ ├── pulse_system_model.py │ │ └── string_model_parser │ │ ├── __init__.py │ │ ├── apply_str_func_to_qobj.py │ │ ├── gen_operator.py │ │ ├── operator_from_string.py │ │ ├── operator_generators.py │ │ └── string_model_parser.py │ ├── utils │ ├── __init__.py │ ├── noise_model_inserter.py │ ├── noise_remapper.py │ └── noise_transformation.py │ └── version.py ├── releasenotes └── notes │ ├── 0.5 │ ├── automatic-method-930a74f765b9a94c.yaml │ ├── controller-transpile-298ea8d76a406648.yaml │ ├── device-errors-bb231623712ecda7.yaml │ ├── fix-controller-parallel-shots-d32967c029259790.yaml │ ├── fix-density-matrix-diagonal-bb8ce049e2fa3c64.yaml │ ├── fix-density-matrix-thrust-8f5f27748974f310.yaml │ ├── fix-diagonal-unitary-check-a726500ffda6c74b.yaml │ ├── fix-reduce-barrier-7b1dfeb4a9389516.yaml │ ├── fix-required-memory-check-0a138e0478d8ff32.yaml │ ├── stabilizer-cy-200773f25da609d3.yaml │ ├── start-using-reno-e250f0c5272608ea.yaml │ └── validation-opt-in-e43a002f160ddd11.yaml │ ├── 0.6 │ ├── 0.6.0-release-1560059e0b322560.yaml │ ├── density-matrix-snapshot-50de5e74c123a122.yaml │ ├── expval_pauli-ec2ce5650dd82c49.yaml │ ├── fix-statevector-precision-24350e9fd7368c24.yaml │ ├── gate-fusion-4f208fd824ccaf3b.yaml │ ├── improve-ave-snapshots-768767618ff00c2d.yaml │ ├── improve-matrix-8b5b707c13466706.yaml │ ├── mps-method-5139ae07accea25f.yaml │ ├── pulse-sim-36890bd8b7f0ed16.yaml │ ├── pybind11-094ae708e4358523.yaml │ ├── rng-engine-8235ed6278c23765.yaml │ ├── simd-ff5783e7464d56ef.yaml │ ├── state-opset-150ac1fd8602406b.yaml │ └── upgrade-measure-sampling-b9bd728e7c90704e.yaml │ ├── 0.7 │ ├── 0.7.0-release-a6655712e304234b.yaml │ ├── add-openblas-lapack-67ad654d1148a309.yaml │ ├── basis-gates-acbc8a1a52a49413.yaml │ ├── configurable-backends-a55cd6a39a0a1561.yaml │ ├── deprecate-snapshot-variance-7d02188deacf9a08.yaml │ ├── drop-py35-814876e9d7354a39.yaml │ ├── fix-cpp-for-loop-refs-5a6bb879bf58a4fb.yaml │ ├── fix-snapshot-copy-54ee685094d1e261.yaml │ ├── fix-y-expectation-1ad355c31b4c3247.yaml │ ├── fusion-threshold-33127b9b4e219640.yaml │ ├── global-phase-9fc2105dac076f48.yaml │ ├── kraus-noise-fusion-5577d4a38862e966.yaml │ ├── move-final-snapshots-1cdc5e93b4695324.yaml │ ├── mps-apply-kraus-3cc8de65a66385ab.yaml │ ├── mps-density-matrix-51f7d5b1ef51e746.yaml │ ├── pybind-functors-a0b7b357fbe67dfb.yaml │ ├── simd-support-c2352ca3d639770f.yaml │ ├── validate-memory-statevector-d1b4fc48b002856f.yaml │ └── vector-class-ee57ad715b18cc55.yaml │ ├── add-python3.9-83b3b4e5c3d59571.yaml │ ├── aer-provider-instance-38b472f3ea541977.yaml │ ├── allow_cuda_on_win-c3e5c920528eb282.yaml │ ├── basis_gate_error_msg-04862cbd47f5f57f.yaml │ ├── cmake-optional-conan-bc99a895fc4345e1.yaml │ ├── cython-dep-removed-ffc095dcc575c449.yaml │ ├── diagnoal-b06c925f44540f8e.yaml │ ├── extended_stabilizer_norm_estimation-d17632efe8d2bb19.yaml │ ├── fix-backend-noise-model-f22e9d6254d70852.yaml │ ├── fix-basis-gates-3b5c64c3bbfee1c7.yaml │ ├── fix-c-if-large-register-79d6649395e57ff5.yaml │ ├── fix-noise-basis-gates-ecdfa43394ff78e3.yaml │ ├── fix-omp-nested-9d120cd1a08725ab.yaml │ ├── fix-truncation-85010290548c2d16.yaml │ ├── initialize-in-mps-e9f8b70c798e7e25.yaml │ ├── kraus-bug-a1940e9b12e40f70.yaml │ ├── pauli-instruction-c3aa2c0c634e642e.yaml │ ├── sample_measure-bug-4ce3a1a6553e4900.yaml │ ├── snapshot_amplitudes-c2be90ac2830517e.yaml │ └── update-conan-0e891458bcc96ee2.yaml ├── requirements-dev.txt ├── setup.py ├── src ├── controllers │ ├── controller.hpp │ ├── controller_execute.hpp │ ├── qasm_controller.hpp │ ├── statevector_controller.hpp │ └── unitary_controller.hpp ├── framework │ ├── avx2_detect.hpp │ ├── blas_protos.hpp │ ├── circuit.hpp │ ├── creg.hpp │ ├── json.hpp │ ├── linalg │ │ ├── almost_equal.hpp │ │ ├── eigensystem.hpp │ │ ├── enable_if_numeric.hpp │ │ ├── linalg.hpp │ │ ├── linops │ │ │ ├── linops_aer_vector.hpp │ │ │ ├── linops_array.hpp │ │ │ ├── linops_generic.hpp │ │ │ ├── linops_json.hpp │ │ │ ├── linops_map.hpp │ │ │ ├── linops_matrix.hpp │ │ │ ├── linops_unordered_map.hpp │ │ │ └── linops_vector.hpp │ │ ├── matrix_utils.hpp │ │ ├── matrix_utils │ │ │ ├── matrix_defs.hpp │ │ │ ├── smatrix_defs.hpp │ │ │ └── vmatrix_defs.hpp │ │ ├── square.hpp │ │ ├── vector.hpp │ │ └── vector_json.hpp │ ├── matrix.hpp │ ├── noise_utils.hpp │ ├── operations.hpp │ ├── opset.hpp │ ├── pybind_basics.hpp │ ├── pybind_json.hpp │ ├── qobj.hpp │ ├── results │ │ ├── data │ │ │ ├── data.hpp │ │ │ ├── metadata.hpp │ │ │ ├── mixins │ │ │ │ ├── data_cmatrix.hpp │ │ │ │ ├── data_creg.hpp │ │ │ │ ├── data_cvector.hpp │ │ │ │ ├── pybind_data_cmatrix.hpp │ │ │ │ ├── pybind_data_creg.hpp │ │ │ │ └── pybind_data_cvector.hpp │ │ │ ├── pybind_data.hpp │ │ │ ├── pybind_metadata.hpp │ │ │ └── subtypes │ │ │ │ ├── accum_data.hpp │ │ │ │ ├── average_data.hpp │ │ │ │ ├── data_map.hpp │ │ │ │ ├── list_data.hpp │ │ │ │ ├── pybind_data_map.hpp │ │ │ │ ├── pybind_subtypes.hpp │ │ │ │ └── single_data.hpp │ │ ├── experiment_result.hpp │ │ ├── legacy │ │ │ ├── average_data.hpp │ │ │ ├── average_snapshot.hpp │ │ │ ├── data_container.hpp │ │ │ ├── pershot_data.hpp │ │ │ ├── pershot_snapshot.hpp │ │ │ ├── pybind_data.hpp │ │ │ └── snapshot_data.hpp │ │ ├── pybind_result.hpp │ │ └── result.hpp │ ├── rng.hpp │ ├── stl_ostream.hpp │ ├── types.hpp │ └── utils.hpp ├── misc │ ├── clang_omp_symbols.hpp │ ├── common_macros.hpp │ ├── gcc_omp_symbols.hpp │ ├── hacks.hpp │ └── warnings.hpp ├── noise │ ├── noise_model.hpp │ ├── quantum_error.hpp │ └── readout_error.hpp ├── open_pulse │ ├── CMakeLists.txt │ ├── eval_hamiltonian.hpp │ ├── iterators.hpp │ ├── log.hpp │ ├── numeric_integrator.cpp │ ├── numeric_integrator.hpp │ ├── ordered_map.hpp │ ├── pulse_utils.cpp │ ├── pulse_utils.hpp │ ├── pulse_utils_bindings.cpp │ ├── python_to_cpp.hpp │ ├── test_python_to_cpp.cpp │ ├── test_python_to_cpp.hpp │ ├── types.hpp │ ├── zspmv.cpp │ └── zspmv.hpp ├── simulators │ ├── density_matrix │ │ ├── densitymatrix.hpp │ │ ├── densitymatrix_state.hpp │ │ └── densitymatrix_thrust.hpp │ ├── extended_stabilizer │ │ ├── ch_runner.hpp │ │ ├── chlib │ │ │ ├── chstabilizer.hpp │ │ │ └── core.hpp │ │ ├── extended_stabilizer_state.hpp │ │ └── gates.hpp │ ├── matrix_product_state │ │ ├── matrix_product_state.hpp │ │ ├── matrix_product_state_internal.cpp │ │ ├── matrix_product_state_internal.hpp │ │ ├── matrix_product_state_tensor.hpp │ │ ├── svd.cpp │ │ └── svd.hpp │ ├── stabilizer │ │ ├── binary_vector.hpp │ │ ├── clifford.hpp │ │ ├── pauli.hpp │ │ └── stabilizer_state.hpp │ ├── state.hpp │ ├── statevector │ │ ├── .__afsA553 │ │ ├── indexes.hpp │ │ ├── qubitvector.hpp │ │ ├── qubitvector_thrust.hpp │ │ ├── qv_avx2.cpp │ │ ├── qv_avx2.hpp │ │ ├── statevector_state.hpp │ │ ├── transformer.hpp │ │ └── transformer_avx2.hpp │ ├── superoperator │ │ ├── superoperator.hpp │ │ └── superoperator_state.hpp │ └── unitary │ │ ├── unitary_state.hpp │ │ ├── unitarymatrix.hpp │ │ └── unitarymatrix_thrust.hpp ├── third-party │ ├── win32 │ │ └── lib │ │ │ └── openblas.7z │ └── win64 │ │ └── lib │ │ └── openblas.7z └── transpile │ ├── basic_opts.hpp │ ├── circuitopt.hpp │ ├── delay_measure.hpp │ ├── fusion.hpp │ └── truncate_qubits.hpp ├── test ├── CMakeLists.txt ├── __init__.py ├── asv.linux.conf.json ├── asv.linux.cuda.conf.json ├── benchmark │ ├── __init__.py │ ├── basic.py │ ├── basic_05q.py │ ├── basic_15q.py │ ├── basic_25q.py │ ├── circuit_library_circuits.py │ ├── noise.py │ ├── noise_12q.py │ ├── noise_16q.py │ ├── noise_20q.py │ ├── output.py │ ├── output_05q.py │ ├── output_15q.py │ ├── output_25q.py │ ├── simulator_benchmark.py │ └── vqe_application.py ├── data │ ├── qobj_snapshot_expval_matrix.json │ ├── qobj_snapshot_expval_pauli.json │ ├── qobj_snapshot_probs.json │ └── qobj_snapshot_statevector.json ├── src │ ├── test_linalg.cpp │ ├── test_snapshot.cpp │ ├── test_snapshot_bdd.cpp │ └── utils.hpp └── terra │ ├── __init__.py │ ├── backends │ ├── __init__.py │ ├── pulse_sim_independent.py │ ├── qasm_simulator │ │ ├── qasm_algorithms.py │ │ ├── qasm_basics.py │ │ ├── qasm_cliffords.py │ │ ├── qasm_conditional.py │ │ ├── qasm_delay_measure.py │ │ ├── qasm_fusion.py │ │ ├── qasm_initialize.py │ │ ├── qasm_measure.py │ │ ├── qasm_method.py │ │ ├── qasm_multiplexer.py │ │ ├── qasm_noise.py │ │ ├── qasm_reset.py │ │ ├── qasm_snapshot.py │ │ ├── qasm_standard_gates.py │ │ ├── qasm_thread_management.py │ │ ├── qasm_truncate.py │ │ └── qasm_unitary_gate.py │ ├── statevector_simulator │ │ ├── statevector_basics.py │ │ ├── statevector_fusion.py │ │ └── statevector_gates.py │ ├── test_config_pulse_simulator.py │ ├── test_parameterized_qobj.py │ ├── test_pulse_simulator.py │ ├── test_qasm_simulator.py │ ├── test_qasm_simulator_density_matrix.py │ ├── test_qasm_simulator_extended_stabilizer.py │ ├── test_qasm_simulator_matrix_product_state.py │ ├── test_qasm_simulator_stabilizer.py │ ├── test_qasm_simulator_statevector.py │ ├── test_statevector_simulator.py │ ├── test_unitary_simulator.py │ └── unitary_simulator │ │ ├── unitary_basics.py │ │ ├── unitary_fusion.py │ │ ├── unitary_gates.py │ │ └── unitary_snapshot.py │ ├── common.py │ ├── decorators.py │ ├── extensions │ ├── __init__.py │ ├── test_snapshot_amplitudes.py │ ├── test_snapshot_density_matrix.py │ ├── test_snapshot_expectation_value.py │ ├── test_snapshot_probabilities.py │ ├── test_snapshot_stabilizer.py │ ├── test_snapshot_statevector.py │ └── test_wrappers.py │ ├── noise │ ├── __init__.py │ ├── test_noise_inserter.py │ ├── test_noise_model.py │ ├── test_noise_remapper.py │ ├── test_noise_transformation.py │ ├── test_quantum_error.py │ ├── test_readout_error.py │ └── test_standard_errors.py │ ├── pulse │ ├── __init__.py │ ├── de │ │ ├── __init__.py │ │ ├── test_de_methods.py │ │ └── test_type_utils.py │ ├── test_duffing_model_generators.py │ └── test_system_models.py │ ├── reference │ ├── ref_1q_clifford.py │ ├── ref_2q_clifford.py │ ├── ref_algorithms.py │ ├── ref_conditionals.py │ ├── ref_diagonal_gate.py │ ├── ref_initialize.py │ ├── ref_kraus_noise.py │ ├── ref_measure.py │ ├── ref_multiplexer.py │ ├── ref_non_clifford.py │ ├── ref_pauli_noise.py │ ├── ref_readout_noise.py │ ├── ref_reset.py │ ├── ref_reset_noise.py │ ├── ref_snapshot_amplitudes.py │ ├── ref_snapshot_expval.py │ ├── ref_snapshot_probabilities.py │ ├── ref_snapshot_state.py │ └── ref_unitary_gate.py │ ├── test_python_to_cpp.py │ └── utils │ ├── mock.py │ ├── multiplexer.py │ └── utils.py ├── tools └── verify_wheels.py └── tox.ini /BENCHMARKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/BENCHMARKING.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile.Thrust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/Makefile.Thrust -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /cmake/FindBLAS.cmake.fix-static-linking: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/cmake/FindBLAS.cmake.fix-static-linking -------------------------------------------------------------------------------- /cmake/FindPybind11.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/cmake/FindPybind11.cmake -------------------------------------------------------------------------------- /cmake/FindPythonExtensions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/cmake/FindPythonExtensions.cmake -------------------------------------------------------------------------------- /cmake/Linter.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/cmake/Linter.cmake -------------------------------------------------------------------------------- /cmake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/cmake/README.md -------------------------------------------------------------------------------- /cmake/compiler_utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/cmake/compiler_utils.cmake -------------------------------------------------------------------------------- /cmake/conan.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/cmake/conan.cmake -------------------------------------------------------------------------------- /cmake/conan_utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/cmake/conan_utils.cmake -------------------------------------------------------------------------------- /cmake/dependency_utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/cmake/dependency_utils.cmake -------------------------------------------------------------------------------- /cmake/findBLASInSpecificPath.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/cmake/findBLASInSpecificPath.cmake -------------------------------------------------------------------------------- /cmake/nvcc_add_compiler_options.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/cmake/nvcc_add_compiler_options.cmake -------------------------------------------------------------------------------- /cmake/targetLinkLibrariesWithDynamicLookup.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/cmake/targetLinkLibrariesWithDynamicLookup.cmake -------------------------------------------------------------------------------- /constraints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/constraints.txt -------------------------------------------------------------------------------- /contrib/standalone/qasm_simulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/contrib/standalone/qasm_simulator.cpp -------------------------------------------------------------------------------- /contrib/standalone/version.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/contrib/standalone/version.hpp.in -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/docs/_static/style.css -------------------------------------------------------------------------------- /docs/_templates/autosummary/base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/docs/_templates/autosummary/base.rst -------------------------------------------------------------------------------- /docs/_templates/autosummary/class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/docs/_templates/autosummary/class.rst -------------------------------------------------------------------------------- /docs/_templates/autosummary/module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/docs/_templates/autosummary/module.rst -------------------------------------------------------------------------------- /docs/apidocs/aer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/docs/apidocs/aer.rst -------------------------------------------------------------------------------- /docs/apidocs/aer_extensions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/docs/apidocs/aer_extensions.rst -------------------------------------------------------------------------------- /docs/apidocs/aer_noise.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/docs/apidocs/aer_noise.rst -------------------------------------------------------------------------------- /docs/apidocs/aer_provider.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/docs/apidocs/aer_provider.rst -------------------------------------------------------------------------------- /docs/apidocs/aer_pulse.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/docs/apidocs/aer_pulse.rst -------------------------------------------------------------------------------- /docs/apidocs/aer_utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/docs/apidocs/aer_utils.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/docs/images/logo.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/release_notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/docs/release_notes.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/pyproject.toml -------------------------------------------------------------------------------- /qiskit/__init__.pxd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qiskit/providers/__init__.pxd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qiskit/providers/aer/VERSION.txt: -------------------------------------------------------------------------------- 1 | 0.8.0 2 | -------------------------------------------------------------------------------- /qiskit/providers/aer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/__init__.py -------------------------------------------------------------------------------- /qiskit/providers/aer/aererror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/aererror.py -------------------------------------------------------------------------------- /qiskit/providers/aer/aerjob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/aerjob.py -------------------------------------------------------------------------------- /qiskit/providers/aer/aerprovider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/aerprovider.py -------------------------------------------------------------------------------- /qiskit/providers/aer/backends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/backends/__init__.py -------------------------------------------------------------------------------- /qiskit/providers/aer/backends/aerbackend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/backends/aerbackend.py -------------------------------------------------------------------------------- /qiskit/providers/aer/backends/backend_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/backends/backend_utils.py -------------------------------------------------------------------------------- /qiskit/providers/aer/backends/pulse_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/backends/pulse_simulator.py -------------------------------------------------------------------------------- /qiskit/providers/aer/backends/qasm_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/backends/qasm_simulator.py -------------------------------------------------------------------------------- /qiskit/providers/aer/backends/statevector_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/backends/statevector_simulator.py -------------------------------------------------------------------------------- /qiskit/providers/aer/backends/unitary_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/backends/unitary_simulator.py -------------------------------------------------------------------------------- /qiskit/providers/aer/backends/wrappers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/backends/wrappers/CMakeLists.txt -------------------------------------------------------------------------------- /qiskit/providers/aer/backends/wrappers/bindings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/backends/wrappers/bindings.cc -------------------------------------------------------------------------------- /qiskit/providers/aer/extensions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/extensions/__init__.py -------------------------------------------------------------------------------- /qiskit/providers/aer/extensions/snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/extensions/snapshot.py -------------------------------------------------------------------------------- /qiskit/providers/aer/extensions/snapshot_amplitudes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/extensions/snapshot_amplitudes.py -------------------------------------------------------------------------------- /qiskit/providers/aer/extensions/snapshot_density_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/extensions/snapshot_density_matrix.py -------------------------------------------------------------------------------- /qiskit/providers/aer/extensions/snapshot_expectation_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/extensions/snapshot_expectation_value.py -------------------------------------------------------------------------------- /qiskit/providers/aer/extensions/snapshot_probabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/extensions/snapshot_probabilities.py -------------------------------------------------------------------------------- /qiskit/providers/aer/extensions/snapshot_stabilizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/extensions/snapshot_stabilizer.py -------------------------------------------------------------------------------- /qiskit/providers/aer/extensions/snapshot_statevector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/extensions/snapshot_statevector.py -------------------------------------------------------------------------------- /qiskit/providers/aer/noise/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/noise/__init__.py -------------------------------------------------------------------------------- /qiskit/providers/aer/noise/device/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/noise/device/__init__.py -------------------------------------------------------------------------------- /qiskit/providers/aer/noise/device/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/noise/device/models.py -------------------------------------------------------------------------------- /qiskit/providers/aer/noise/device/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/noise/device/parameters.py -------------------------------------------------------------------------------- /qiskit/providers/aer/noise/errors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/noise/errors/__init__.py -------------------------------------------------------------------------------- /qiskit/providers/aer/noise/errors/errorutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/noise/errors/errorutils.py -------------------------------------------------------------------------------- /qiskit/providers/aer/noise/errors/quantum_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/noise/errors/quantum_error.py -------------------------------------------------------------------------------- /qiskit/providers/aer/noise/errors/readout_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/noise/errors/readout_error.py -------------------------------------------------------------------------------- /qiskit/providers/aer/noise/errors/standard_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/noise/errors/standard_errors.py -------------------------------------------------------------------------------- /qiskit/providers/aer/noise/noise_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/noise/noise_model.py -------------------------------------------------------------------------------- /qiskit/providers/aer/noise/noiseerror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/noise/noiseerror.py -------------------------------------------------------------------------------- /qiskit/providers/aer/pulse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/pulse/__init__.py -------------------------------------------------------------------------------- /qiskit/providers/aer/pulse/controllers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/pulse/controllers/__init__.py -------------------------------------------------------------------------------- /qiskit/providers/aer/pulse/controllers/digest_pulse_qobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/pulse/controllers/digest_pulse_qobj.py -------------------------------------------------------------------------------- /qiskit/providers/aer/pulse/controllers/mc_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/pulse/controllers/mc_controller.py -------------------------------------------------------------------------------- /qiskit/providers/aer/pulse/controllers/pulse_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/pulse/controllers/pulse_controller.py -------------------------------------------------------------------------------- /qiskit/providers/aer/pulse/controllers/pulse_de_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/pulse/controllers/pulse_de_solver.py -------------------------------------------------------------------------------- /qiskit/providers/aer/pulse/controllers/pulse_sim_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/pulse/controllers/pulse_sim_options.py -------------------------------------------------------------------------------- /qiskit/providers/aer/pulse/controllers/unitary_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/pulse/controllers/unitary_controller.py -------------------------------------------------------------------------------- /qiskit/providers/aer/pulse/de/DE_Methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/pulse/de/DE_Methods.py -------------------------------------------------------------------------------- /qiskit/providers/aer/pulse/de/DE_Options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/pulse/de/DE_Options.py -------------------------------------------------------------------------------- /qiskit/providers/aer/pulse/de/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/pulse/de/__init__.py -------------------------------------------------------------------------------- /qiskit/providers/aer/pulse/de/type_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/pulse/de/type_utils.py -------------------------------------------------------------------------------- /qiskit/providers/aer/pulse/system_models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/pulse/system_models/__init__.py -------------------------------------------------------------------------------- /qiskit/providers/aer/pulse/system_models/duffing_model_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/pulse/system_models/duffing_model_generators.py -------------------------------------------------------------------------------- /qiskit/providers/aer/pulse/system_models/hamiltonian_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/pulse/system_models/hamiltonian_model.py -------------------------------------------------------------------------------- /qiskit/providers/aer/pulse/system_models/pulse_system_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/pulse/system_models/pulse_system_model.py -------------------------------------------------------------------------------- /qiskit/providers/aer/pulse/system_models/string_model_parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/pulse/system_models/string_model_parser/__init__.py -------------------------------------------------------------------------------- /qiskit/providers/aer/pulse/system_models/string_model_parser/apply_str_func_to_qobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/pulse/system_models/string_model_parser/apply_str_func_to_qobj.py -------------------------------------------------------------------------------- /qiskit/providers/aer/pulse/system_models/string_model_parser/gen_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/pulse/system_models/string_model_parser/gen_operator.py -------------------------------------------------------------------------------- /qiskit/providers/aer/pulse/system_models/string_model_parser/operator_from_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/pulse/system_models/string_model_parser/operator_from_string.py -------------------------------------------------------------------------------- /qiskit/providers/aer/pulse/system_models/string_model_parser/operator_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/pulse/system_models/string_model_parser/operator_generators.py -------------------------------------------------------------------------------- /qiskit/providers/aer/pulse/system_models/string_model_parser/string_model_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/pulse/system_models/string_model_parser/string_model_parser.py -------------------------------------------------------------------------------- /qiskit/providers/aer/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/utils/__init__.py -------------------------------------------------------------------------------- /qiskit/providers/aer/utils/noise_model_inserter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/utils/noise_model_inserter.py -------------------------------------------------------------------------------- /qiskit/providers/aer/utils/noise_remapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/utils/noise_remapper.py -------------------------------------------------------------------------------- /qiskit/providers/aer/utils/noise_transformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/utils/noise_transformation.py -------------------------------------------------------------------------------- /qiskit/providers/aer/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/qiskit/providers/aer/version.py -------------------------------------------------------------------------------- /releasenotes/notes/0.5/automatic-method-930a74f765b9a94c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.5/automatic-method-930a74f765b9a94c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.5/controller-transpile-298ea8d76a406648.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.5/controller-transpile-298ea8d76a406648.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.5/device-errors-bb231623712ecda7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.5/device-errors-bb231623712ecda7.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.5/fix-controller-parallel-shots-d32967c029259790.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.5/fix-controller-parallel-shots-d32967c029259790.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.5/fix-density-matrix-diagonal-bb8ce049e2fa3c64.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.5/fix-density-matrix-diagonal-bb8ce049e2fa3c64.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.5/fix-density-matrix-thrust-8f5f27748974f310.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.5/fix-density-matrix-thrust-8f5f27748974f310.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.5/fix-diagonal-unitary-check-a726500ffda6c74b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.5/fix-diagonal-unitary-check-a726500ffda6c74b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.5/fix-reduce-barrier-7b1dfeb4a9389516.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.5/fix-reduce-barrier-7b1dfeb4a9389516.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.5/fix-required-memory-check-0a138e0478d8ff32.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.5/fix-required-memory-check-0a138e0478d8ff32.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.5/stabilizer-cy-200773f25da609d3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.5/stabilizer-cy-200773f25da609d3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.5/start-using-reno-e250f0c5272608ea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.5/start-using-reno-e250f0c5272608ea.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.5/validation-opt-in-e43a002f160ddd11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.5/validation-opt-in-e43a002f160ddd11.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.6/0.6.0-release-1560059e0b322560.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.6/0.6.0-release-1560059e0b322560.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.6/density-matrix-snapshot-50de5e74c123a122.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.6/density-matrix-snapshot-50de5e74c123a122.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.6/expval_pauli-ec2ce5650dd82c49.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.6/expval_pauli-ec2ce5650dd82c49.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.6/fix-statevector-precision-24350e9fd7368c24.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.6/fix-statevector-precision-24350e9fd7368c24.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.6/gate-fusion-4f208fd824ccaf3b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.6/gate-fusion-4f208fd824ccaf3b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.6/improve-ave-snapshots-768767618ff00c2d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.6/improve-ave-snapshots-768767618ff00c2d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.6/improve-matrix-8b5b707c13466706.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.6/improve-matrix-8b5b707c13466706.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.6/mps-method-5139ae07accea25f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.6/mps-method-5139ae07accea25f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.6/pulse-sim-36890bd8b7f0ed16.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.6/pulse-sim-36890bd8b7f0ed16.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.6/pybind11-094ae708e4358523.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.6/pybind11-094ae708e4358523.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.6/rng-engine-8235ed6278c23765.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.6/rng-engine-8235ed6278c23765.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.6/simd-ff5783e7464d56ef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.6/simd-ff5783e7464d56ef.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.6/state-opset-150ac1fd8602406b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.6/state-opset-150ac1fd8602406b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.6/upgrade-measure-sampling-b9bd728e7c90704e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.6/upgrade-measure-sampling-b9bd728e7c90704e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.7/0.7.0-release-a6655712e304234b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.7/0.7.0-release-a6655712e304234b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.7/add-openblas-lapack-67ad654d1148a309.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.7/add-openblas-lapack-67ad654d1148a309.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.7/basis-gates-acbc8a1a52a49413.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.7/basis-gates-acbc8a1a52a49413.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.7/configurable-backends-a55cd6a39a0a1561.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.7/configurable-backends-a55cd6a39a0a1561.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.7/deprecate-snapshot-variance-7d02188deacf9a08.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.7/deprecate-snapshot-variance-7d02188deacf9a08.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.7/drop-py35-814876e9d7354a39.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.7/drop-py35-814876e9d7354a39.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.7/fix-cpp-for-loop-refs-5a6bb879bf58a4fb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.7/fix-cpp-for-loop-refs-5a6bb879bf58a4fb.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.7/fix-snapshot-copy-54ee685094d1e261.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.7/fix-snapshot-copy-54ee685094d1e261.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.7/fix-y-expectation-1ad355c31b4c3247.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.7/fix-y-expectation-1ad355c31b4c3247.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.7/fusion-threshold-33127b9b4e219640.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.7/fusion-threshold-33127b9b4e219640.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.7/global-phase-9fc2105dac076f48.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.7/global-phase-9fc2105dac076f48.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.7/kraus-noise-fusion-5577d4a38862e966.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.7/kraus-noise-fusion-5577d4a38862e966.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.7/move-final-snapshots-1cdc5e93b4695324.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.7/move-final-snapshots-1cdc5e93b4695324.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.7/mps-apply-kraus-3cc8de65a66385ab.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.7/mps-apply-kraus-3cc8de65a66385ab.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.7/mps-density-matrix-51f7d5b1ef51e746.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.7/mps-density-matrix-51f7d5b1ef51e746.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.7/pybind-functors-a0b7b357fbe67dfb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.7/pybind-functors-a0b7b357fbe67dfb.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.7/simd-support-c2352ca3d639770f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.7/simd-support-c2352ca3d639770f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.7/validate-memory-statevector-d1b4fc48b002856f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.7/validate-memory-statevector-d1b4fc48b002856f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.7/vector-class-ee57ad715b18cc55.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/0.7/vector-class-ee57ad715b18cc55.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-python3.9-83b3b4e5c3d59571.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/add-python3.9-83b3b4e5c3d59571.yaml -------------------------------------------------------------------------------- /releasenotes/notes/aer-provider-instance-38b472f3ea541977.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/aer-provider-instance-38b472f3ea541977.yaml -------------------------------------------------------------------------------- /releasenotes/notes/allow_cuda_on_win-c3e5c920528eb282.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/allow_cuda_on_win-c3e5c920528eb282.yaml -------------------------------------------------------------------------------- /releasenotes/notes/basis_gate_error_msg-04862cbd47f5f57f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/basis_gate_error_msg-04862cbd47f5f57f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/cmake-optional-conan-bc99a895fc4345e1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/cmake-optional-conan-bc99a895fc4345e1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/cython-dep-removed-ffc095dcc575c449.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/cython-dep-removed-ffc095dcc575c449.yaml -------------------------------------------------------------------------------- /releasenotes/notes/diagnoal-b06c925f44540f8e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/diagnoal-b06c925f44540f8e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/extended_stabilizer_norm_estimation-d17632efe8d2bb19.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/extended_stabilizer_norm_estimation-d17632efe8d2bb19.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-backend-noise-model-f22e9d6254d70852.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/fix-backend-noise-model-f22e9d6254d70852.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-basis-gates-3b5c64c3bbfee1c7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/fix-basis-gates-3b5c64c3bbfee1c7.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-c-if-large-register-79d6649395e57ff5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/fix-c-if-large-register-79d6649395e57ff5.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-noise-basis-gates-ecdfa43394ff78e3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/fix-noise-basis-gates-ecdfa43394ff78e3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-omp-nested-9d120cd1a08725ab.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/fix-omp-nested-9d120cd1a08725ab.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-truncation-85010290548c2d16.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/fix-truncation-85010290548c2d16.yaml -------------------------------------------------------------------------------- /releasenotes/notes/initialize-in-mps-e9f8b70c798e7e25.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/initialize-in-mps-e9f8b70c798e7e25.yaml -------------------------------------------------------------------------------- /releasenotes/notes/kraus-bug-a1940e9b12e40f70.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/kraus-bug-a1940e9b12e40f70.yaml -------------------------------------------------------------------------------- /releasenotes/notes/pauli-instruction-c3aa2c0c634e642e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/pauli-instruction-c3aa2c0c634e642e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/sample_measure-bug-4ce3a1a6553e4900.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/sample_measure-bug-4ce3a1a6553e4900.yaml -------------------------------------------------------------------------------- /releasenotes/notes/snapshot_amplitudes-c2be90ac2830517e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/snapshot_amplitudes-c2be90ac2830517e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/update-conan-0e891458bcc96ee2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/releasenotes/notes/update-conan-0e891458bcc96ee2.yaml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/setup.py -------------------------------------------------------------------------------- /src/controllers/controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/controllers/controller.hpp -------------------------------------------------------------------------------- /src/controllers/controller_execute.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/controllers/controller_execute.hpp -------------------------------------------------------------------------------- /src/controllers/qasm_controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/controllers/qasm_controller.hpp -------------------------------------------------------------------------------- /src/controllers/statevector_controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/controllers/statevector_controller.hpp -------------------------------------------------------------------------------- /src/controllers/unitary_controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/controllers/unitary_controller.hpp -------------------------------------------------------------------------------- /src/framework/avx2_detect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/avx2_detect.hpp -------------------------------------------------------------------------------- /src/framework/blas_protos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/blas_protos.hpp -------------------------------------------------------------------------------- /src/framework/circuit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/circuit.hpp -------------------------------------------------------------------------------- /src/framework/creg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/creg.hpp -------------------------------------------------------------------------------- /src/framework/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/json.hpp -------------------------------------------------------------------------------- /src/framework/linalg/almost_equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/linalg/almost_equal.hpp -------------------------------------------------------------------------------- /src/framework/linalg/eigensystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/linalg/eigensystem.hpp -------------------------------------------------------------------------------- /src/framework/linalg/enable_if_numeric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/linalg/enable_if_numeric.hpp -------------------------------------------------------------------------------- /src/framework/linalg/linalg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/linalg/linalg.hpp -------------------------------------------------------------------------------- /src/framework/linalg/linops/linops_aer_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/linalg/linops/linops_aer_vector.hpp -------------------------------------------------------------------------------- /src/framework/linalg/linops/linops_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/linalg/linops/linops_array.hpp -------------------------------------------------------------------------------- /src/framework/linalg/linops/linops_generic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/linalg/linops/linops_generic.hpp -------------------------------------------------------------------------------- /src/framework/linalg/linops/linops_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/linalg/linops/linops_json.hpp -------------------------------------------------------------------------------- /src/framework/linalg/linops/linops_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/linalg/linops/linops_map.hpp -------------------------------------------------------------------------------- /src/framework/linalg/linops/linops_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/linalg/linops/linops_matrix.hpp -------------------------------------------------------------------------------- /src/framework/linalg/linops/linops_unordered_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/linalg/linops/linops_unordered_map.hpp -------------------------------------------------------------------------------- /src/framework/linalg/linops/linops_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/linalg/linops/linops_vector.hpp -------------------------------------------------------------------------------- /src/framework/linalg/matrix_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/linalg/matrix_utils.hpp -------------------------------------------------------------------------------- /src/framework/linalg/matrix_utils/matrix_defs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/linalg/matrix_utils/matrix_defs.hpp -------------------------------------------------------------------------------- /src/framework/linalg/matrix_utils/smatrix_defs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/linalg/matrix_utils/smatrix_defs.hpp -------------------------------------------------------------------------------- /src/framework/linalg/matrix_utils/vmatrix_defs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/linalg/matrix_utils/vmatrix_defs.hpp -------------------------------------------------------------------------------- /src/framework/linalg/square.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/linalg/square.hpp -------------------------------------------------------------------------------- /src/framework/linalg/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/linalg/vector.hpp -------------------------------------------------------------------------------- /src/framework/linalg/vector_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/linalg/vector_json.hpp -------------------------------------------------------------------------------- /src/framework/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/matrix.hpp -------------------------------------------------------------------------------- /src/framework/noise_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/noise_utils.hpp -------------------------------------------------------------------------------- /src/framework/operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/operations.hpp -------------------------------------------------------------------------------- /src/framework/opset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/opset.hpp -------------------------------------------------------------------------------- /src/framework/pybind_basics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/pybind_basics.hpp -------------------------------------------------------------------------------- /src/framework/pybind_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/pybind_json.hpp -------------------------------------------------------------------------------- /src/framework/qobj.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/qobj.hpp -------------------------------------------------------------------------------- /src/framework/results/data/data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/results/data/data.hpp -------------------------------------------------------------------------------- /src/framework/results/data/metadata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/results/data/metadata.hpp -------------------------------------------------------------------------------- /src/framework/results/data/mixins/data_cmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/results/data/mixins/data_cmatrix.hpp -------------------------------------------------------------------------------- /src/framework/results/data/mixins/data_creg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/results/data/mixins/data_creg.hpp -------------------------------------------------------------------------------- /src/framework/results/data/mixins/data_cvector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/results/data/mixins/data_cvector.hpp -------------------------------------------------------------------------------- /src/framework/results/data/mixins/pybind_data_cmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/results/data/mixins/pybind_data_cmatrix.hpp -------------------------------------------------------------------------------- /src/framework/results/data/mixins/pybind_data_creg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/results/data/mixins/pybind_data_creg.hpp -------------------------------------------------------------------------------- /src/framework/results/data/mixins/pybind_data_cvector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/results/data/mixins/pybind_data_cvector.hpp -------------------------------------------------------------------------------- /src/framework/results/data/pybind_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/results/data/pybind_data.hpp -------------------------------------------------------------------------------- /src/framework/results/data/pybind_metadata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/results/data/pybind_metadata.hpp -------------------------------------------------------------------------------- /src/framework/results/data/subtypes/accum_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/results/data/subtypes/accum_data.hpp -------------------------------------------------------------------------------- /src/framework/results/data/subtypes/average_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/results/data/subtypes/average_data.hpp -------------------------------------------------------------------------------- /src/framework/results/data/subtypes/data_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/results/data/subtypes/data_map.hpp -------------------------------------------------------------------------------- /src/framework/results/data/subtypes/list_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/results/data/subtypes/list_data.hpp -------------------------------------------------------------------------------- /src/framework/results/data/subtypes/pybind_data_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/results/data/subtypes/pybind_data_map.hpp -------------------------------------------------------------------------------- /src/framework/results/data/subtypes/pybind_subtypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/results/data/subtypes/pybind_subtypes.hpp -------------------------------------------------------------------------------- /src/framework/results/data/subtypes/single_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/results/data/subtypes/single_data.hpp -------------------------------------------------------------------------------- /src/framework/results/experiment_result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/results/experiment_result.hpp -------------------------------------------------------------------------------- /src/framework/results/legacy/average_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/results/legacy/average_data.hpp -------------------------------------------------------------------------------- /src/framework/results/legacy/average_snapshot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/results/legacy/average_snapshot.hpp -------------------------------------------------------------------------------- /src/framework/results/legacy/data_container.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/results/legacy/data_container.hpp -------------------------------------------------------------------------------- /src/framework/results/legacy/pershot_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/results/legacy/pershot_data.hpp -------------------------------------------------------------------------------- /src/framework/results/legacy/pershot_snapshot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/results/legacy/pershot_snapshot.hpp -------------------------------------------------------------------------------- /src/framework/results/legacy/pybind_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/results/legacy/pybind_data.hpp -------------------------------------------------------------------------------- /src/framework/results/legacy/snapshot_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/results/legacy/snapshot_data.hpp -------------------------------------------------------------------------------- /src/framework/results/pybind_result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/results/pybind_result.hpp -------------------------------------------------------------------------------- /src/framework/results/result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/results/result.hpp -------------------------------------------------------------------------------- /src/framework/rng.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/rng.hpp -------------------------------------------------------------------------------- /src/framework/stl_ostream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/stl_ostream.hpp -------------------------------------------------------------------------------- /src/framework/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/types.hpp -------------------------------------------------------------------------------- /src/framework/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/framework/utils.hpp -------------------------------------------------------------------------------- /src/misc/clang_omp_symbols.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/misc/clang_omp_symbols.hpp -------------------------------------------------------------------------------- /src/misc/common_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/misc/common_macros.hpp -------------------------------------------------------------------------------- /src/misc/gcc_omp_symbols.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/misc/gcc_omp_symbols.hpp -------------------------------------------------------------------------------- /src/misc/hacks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/misc/hacks.hpp -------------------------------------------------------------------------------- /src/misc/warnings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/misc/warnings.hpp -------------------------------------------------------------------------------- /src/noise/noise_model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/noise/noise_model.hpp -------------------------------------------------------------------------------- /src/noise/quantum_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/noise/quantum_error.hpp -------------------------------------------------------------------------------- /src/noise/readout_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/noise/readout_error.hpp -------------------------------------------------------------------------------- /src/open_pulse/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/open_pulse/CMakeLists.txt -------------------------------------------------------------------------------- /src/open_pulse/eval_hamiltonian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/open_pulse/eval_hamiltonian.hpp -------------------------------------------------------------------------------- /src/open_pulse/iterators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/open_pulse/iterators.hpp -------------------------------------------------------------------------------- /src/open_pulse/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/open_pulse/log.hpp -------------------------------------------------------------------------------- /src/open_pulse/numeric_integrator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/open_pulse/numeric_integrator.cpp -------------------------------------------------------------------------------- /src/open_pulse/numeric_integrator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/open_pulse/numeric_integrator.hpp -------------------------------------------------------------------------------- /src/open_pulse/ordered_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/open_pulse/ordered_map.hpp -------------------------------------------------------------------------------- /src/open_pulse/pulse_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/open_pulse/pulse_utils.cpp -------------------------------------------------------------------------------- /src/open_pulse/pulse_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/open_pulse/pulse_utils.hpp -------------------------------------------------------------------------------- /src/open_pulse/pulse_utils_bindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/open_pulse/pulse_utils_bindings.cpp -------------------------------------------------------------------------------- /src/open_pulse/python_to_cpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/open_pulse/python_to_cpp.hpp -------------------------------------------------------------------------------- /src/open_pulse/test_python_to_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/open_pulse/test_python_to_cpp.cpp -------------------------------------------------------------------------------- /src/open_pulse/test_python_to_cpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/open_pulse/test_python_to_cpp.hpp -------------------------------------------------------------------------------- /src/open_pulse/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/open_pulse/types.hpp -------------------------------------------------------------------------------- /src/open_pulse/zspmv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/open_pulse/zspmv.cpp -------------------------------------------------------------------------------- /src/open_pulse/zspmv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/open_pulse/zspmv.hpp -------------------------------------------------------------------------------- /src/simulators/density_matrix/densitymatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/density_matrix/densitymatrix.hpp -------------------------------------------------------------------------------- /src/simulators/density_matrix/densitymatrix_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/density_matrix/densitymatrix_state.hpp -------------------------------------------------------------------------------- /src/simulators/density_matrix/densitymatrix_thrust.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/density_matrix/densitymatrix_thrust.hpp -------------------------------------------------------------------------------- /src/simulators/extended_stabilizer/ch_runner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/extended_stabilizer/ch_runner.hpp -------------------------------------------------------------------------------- /src/simulators/extended_stabilizer/chlib/chstabilizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/extended_stabilizer/chlib/chstabilizer.hpp -------------------------------------------------------------------------------- /src/simulators/extended_stabilizer/chlib/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/extended_stabilizer/chlib/core.hpp -------------------------------------------------------------------------------- /src/simulators/extended_stabilizer/extended_stabilizer_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/extended_stabilizer/extended_stabilizer_state.hpp -------------------------------------------------------------------------------- /src/simulators/extended_stabilizer/gates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/extended_stabilizer/gates.hpp -------------------------------------------------------------------------------- /src/simulators/matrix_product_state/matrix_product_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/matrix_product_state/matrix_product_state.hpp -------------------------------------------------------------------------------- /src/simulators/matrix_product_state/matrix_product_state_internal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/matrix_product_state/matrix_product_state_internal.cpp -------------------------------------------------------------------------------- /src/simulators/matrix_product_state/matrix_product_state_internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/matrix_product_state/matrix_product_state_internal.hpp -------------------------------------------------------------------------------- /src/simulators/matrix_product_state/matrix_product_state_tensor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/matrix_product_state/matrix_product_state_tensor.hpp -------------------------------------------------------------------------------- /src/simulators/matrix_product_state/svd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/matrix_product_state/svd.cpp -------------------------------------------------------------------------------- /src/simulators/matrix_product_state/svd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/matrix_product_state/svd.hpp -------------------------------------------------------------------------------- /src/simulators/stabilizer/binary_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/stabilizer/binary_vector.hpp -------------------------------------------------------------------------------- /src/simulators/stabilizer/clifford.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/stabilizer/clifford.hpp -------------------------------------------------------------------------------- /src/simulators/stabilizer/pauli.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/stabilizer/pauli.hpp -------------------------------------------------------------------------------- /src/simulators/stabilizer/stabilizer_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/stabilizer/stabilizer_state.hpp -------------------------------------------------------------------------------- /src/simulators/state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/state.hpp -------------------------------------------------------------------------------- /src/simulators/statevector/.__afsA553: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/statevector/.__afsA553 -------------------------------------------------------------------------------- /src/simulators/statevector/indexes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/statevector/indexes.hpp -------------------------------------------------------------------------------- /src/simulators/statevector/qubitvector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/statevector/qubitvector.hpp -------------------------------------------------------------------------------- /src/simulators/statevector/qubitvector_thrust.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/statevector/qubitvector_thrust.hpp -------------------------------------------------------------------------------- /src/simulators/statevector/qv_avx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/statevector/qv_avx2.cpp -------------------------------------------------------------------------------- /src/simulators/statevector/qv_avx2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/statevector/qv_avx2.hpp -------------------------------------------------------------------------------- /src/simulators/statevector/statevector_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/statevector/statevector_state.hpp -------------------------------------------------------------------------------- /src/simulators/statevector/transformer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/statevector/transformer.hpp -------------------------------------------------------------------------------- /src/simulators/statevector/transformer_avx2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/statevector/transformer_avx2.hpp -------------------------------------------------------------------------------- /src/simulators/superoperator/superoperator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/superoperator/superoperator.hpp -------------------------------------------------------------------------------- /src/simulators/superoperator/superoperator_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/superoperator/superoperator_state.hpp -------------------------------------------------------------------------------- /src/simulators/unitary/unitary_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/unitary/unitary_state.hpp -------------------------------------------------------------------------------- /src/simulators/unitary/unitarymatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/unitary/unitarymatrix.hpp -------------------------------------------------------------------------------- /src/simulators/unitary/unitarymatrix_thrust.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/simulators/unitary/unitarymatrix_thrust.hpp -------------------------------------------------------------------------------- /src/third-party/win32/lib/openblas.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/third-party/win32/lib/openblas.7z -------------------------------------------------------------------------------- /src/third-party/win64/lib/openblas.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/third-party/win64/lib/openblas.7z -------------------------------------------------------------------------------- /src/transpile/basic_opts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/transpile/basic_opts.hpp -------------------------------------------------------------------------------- /src/transpile/circuitopt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/transpile/circuitopt.hpp -------------------------------------------------------------------------------- /src/transpile/delay_measure.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/transpile/delay_measure.hpp -------------------------------------------------------------------------------- /src/transpile/fusion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/transpile/fusion.hpp -------------------------------------------------------------------------------- /src/transpile/truncate_qubits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/src/transpile/truncate_qubits.hpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/__init__.py -------------------------------------------------------------------------------- /test/asv.linux.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/asv.linux.conf.json -------------------------------------------------------------------------------- /test/asv.linux.cuda.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/asv.linux.cuda.conf.json -------------------------------------------------------------------------------- /test/benchmark/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/benchmark/__init__.py -------------------------------------------------------------------------------- /test/benchmark/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/benchmark/basic.py -------------------------------------------------------------------------------- /test/benchmark/basic_05q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/benchmark/basic_05q.py -------------------------------------------------------------------------------- /test/benchmark/basic_15q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/benchmark/basic_15q.py -------------------------------------------------------------------------------- /test/benchmark/basic_25q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/benchmark/basic_25q.py -------------------------------------------------------------------------------- /test/benchmark/circuit_library_circuits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/benchmark/circuit_library_circuits.py -------------------------------------------------------------------------------- /test/benchmark/noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/benchmark/noise.py -------------------------------------------------------------------------------- /test/benchmark/noise_12q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/benchmark/noise_12q.py -------------------------------------------------------------------------------- /test/benchmark/noise_16q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/benchmark/noise_16q.py -------------------------------------------------------------------------------- /test/benchmark/noise_20q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/benchmark/noise_20q.py -------------------------------------------------------------------------------- /test/benchmark/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/benchmark/output.py -------------------------------------------------------------------------------- /test/benchmark/output_05q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/benchmark/output_05q.py -------------------------------------------------------------------------------- /test/benchmark/output_15q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/benchmark/output_15q.py -------------------------------------------------------------------------------- /test/benchmark/output_25q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/benchmark/output_25q.py -------------------------------------------------------------------------------- /test/benchmark/simulator_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/benchmark/simulator_benchmark.py -------------------------------------------------------------------------------- /test/benchmark/vqe_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/benchmark/vqe_application.py -------------------------------------------------------------------------------- /test/data/qobj_snapshot_expval_matrix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/data/qobj_snapshot_expval_matrix.json -------------------------------------------------------------------------------- /test/data/qobj_snapshot_expval_pauli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/data/qobj_snapshot_expval_pauli.json -------------------------------------------------------------------------------- /test/data/qobj_snapshot_probs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/data/qobj_snapshot_probs.json -------------------------------------------------------------------------------- /test/data/qobj_snapshot_statevector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/data/qobj_snapshot_statevector.json -------------------------------------------------------------------------------- /test/src/test_linalg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/src/test_linalg.cpp -------------------------------------------------------------------------------- /test/src/test_snapshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/src/test_snapshot.cpp -------------------------------------------------------------------------------- /test/src/test_snapshot_bdd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/src/test_snapshot_bdd.cpp -------------------------------------------------------------------------------- /test/src/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/src/utils.hpp -------------------------------------------------------------------------------- /test/terra/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/__init__.py -------------------------------------------------------------------------------- /test/terra/backends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/__init__.py -------------------------------------------------------------------------------- /test/terra/backends/pulse_sim_independent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/pulse_sim_independent.py -------------------------------------------------------------------------------- /test/terra/backends/qasm_simulator/qasm_algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/qasm_simulator/qasm_algorithms.py -------------------------------------------------------------------------------- /test/terra/backends/qasm_simulator/qasm_basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/qasm_simulator/qasm_basics.py -------------------------------------------------------------------------------- /test/terra/backends/qasm_simulator/qasm_cliffords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/qasm_simulator/qasm_cliffords.py -------------------------------------------------------------------------------- /test/terra/backends/qasm_simulator/qasm_conditional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/qasm_simulator/qasm_conditional.py -------------------------------------------------------------------------------- /test/terra/backends/qasm_simulator/qasm_delay_measure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/qasm_simulator/qasm_delay_measure.py -------------------------------------------------------------------------------- /test/terra/backends/qasm_simulator/qasm_fusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/qasm_simulator/qasm_fusion.py -------------------------------------------------------------------------------- /test/terra/backends/qasm_simulator/qasm_initialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/qasm_simulator/qasm_initialize.py -------------------------------------------------------------------------------- /test/terra/backends/qasm_simulator/qasm_measure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/qasm_simulator/qasm_measure.py -------------------------------------------------------------------------------- /test/terra/backends/qasm_simulator/qasm_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/qasm_simulator/qasm_method.py -------------------------------------------------------------------------------- /test/terra/backends/qasm_simulator/qasm_multiplexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/qasm_simulator/qasm_multiplexer.py -------------------------------------------------------------------------------- /test/terra/backends/qasm_simulator/qasm_noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/qasm_simulator/qasm_noise.py -------------------------------------------------------------------------------- /test/terra/backends/qasm_simulator/qasm_reset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/qasm_simulator/qasm_reset.py -------------------------------------------------------------------------------- /test/terra/backends/qasm_simulator/qasm_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/qasm_simulator/qasm_snapshot.py -------------------------------------------------------------------------------- /test/terra/backends/qasm_simulator/qasm_standard_gates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/qasm_simulator/qasm_standard_gates.py -------------------------------------------------------------------------------- /test/terra/backends/qasm_simulator/qasm_thread_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/qasm_simulator/qasm_thread_management.py -------------------------------------------------------------------------------- /test/terra/backends/qasm_simulator/qasm_truncate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/qasm_simulator/qasm_truncate.py -------------------------------------------------------------------------------- /test/terra/backends/qasm_simulator/qasm_unitary_gate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/qasm_simulator/qasm_unitary_gate.py -------------------------------------------------------------------------------- /test/terra/backends/statevector_simulator/statevector_basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/statevector_simulator/statevector_basics.py -------------------------------------------------------------------------------- /test/terra/backends/statevector_simulator/statevector_fusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/statevector_simulator/statevector_fusion.py -------------------------------------------------------------------------------- /test/terra/backends/statevector_simulator/statevector_gates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/statevector_simulator/statevector_gates.py -------------------------------------------------------------------------------- /test/terra/backends/test_config_pulse_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/test_config_pulse_simulator.py -------------------------------------------------------------------------------- /test/terra/backends/test_parameterized_qobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/test_parameterized_qobj.py -------------------------------------------------------------------------------- /test/terra/backends/test_pulse_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/test_pulse_simulator.py -------------------------------------------------------------------------------- /test/terra/backends/test_qasm_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/test_qasm_simulator.py -------------------------------------------------------------------------------- /test/terra/backends/test_qasm_simulator_density_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/test_qasm_simulator_density_matrix.py -------------------------------------------------------------------------------- /test/terra/backends/test_qasm_simulator_extended_stabilizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/test_qasm_simulator_extended_stabilizer.py -------------------------------------------------------------------------------- /test/terra/backends/test_qasm_simulator_matrix_product_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/test_qasm_simulator_matrix_product_state.py -------------------------------------------------------------------------------- /test/terra/backends/test_qasm_simulator_stabilizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/test_qasm_simulator_stabilizer.py -------------------------------------------------------------------------------- /test/terra/backends/test_qasm_simulator_statevector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/test_qasm_simulator_statevector.py -------------------------------------------------------------------------------- /test/terra/backends/test_statevector_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/test_statevector_simulator.py -------------------------------------------------------------------------------- /test/terra/backends/test_unitary_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/test_unitary_simulator.py -------------------------------------------------------------------------------- /test/terra/backends/unitary_simulator/unitary_basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/unitary_simulator/unitary_basics.py -------------------------------------------------------------------------------- /test/terra/backends/unitary_simulator/unitary_fusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/unitary_simulator/unitary_fusion.py -------------------------------------------------------------------------------- /test/terra/backends/unitary_simulator/unitary_gates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/unitary_simulator/unitary_gates.py -------------------------------------------------------------------------------- /test/terra/backends/unitary_simulator/unitary_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/backends/unitary_simulator/unitary_snapshot.py -------------------------------------------------------------------------------- /test/terra/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/common.py -------------------------------------------------------------------------------- /test/terra/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/decorators.py -------------------------------------------------------------------------------- /test/terra/extensions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/extensions/__init__.py -------------------------------------------------------------------------------- /test/terra/extensions/test_snapshot_amplitudes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/extensions/test_snapshot_amplitudes.py -------------------------------------------------------------------------------- /test/terra/extensions/test_snapshot_density_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/extensions/test_snapshot_density_matrix.py -------------------------------------------------------------------------------- /test/terra/extensions/test_snapshot_expectation_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/extensions/test_snapshot_expectation_value.py -------------------------------------------------------------------------------- /test/terra/extensions/test_snapshot_probabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/extensions/test_snapshot_probabilities.py -------------------------------------------------------------------------------- /test/terra/extensions/test_snapshot_stabilizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/extensions/test_snapshot_stabilizer.py -------------------------------------------------------------------------------- /test/terra/extensions/test_snapshot_statevector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/extensions/test_snapshot_statevector.py -------------------------------------------------------------------------------- /test/terra/extensions/test_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/extensions/test_wrappers.py -------------------------------------------------------------------------------- /test/terra/noise/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/noise/__init__.py -------------------------------------------------------------------------------- /test/terra/noise/test_noise_inserter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/noise/test_noise_inserter.py -------------------------------------------------------------------------------- /test/terra/noise/test_noise_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/noise/test_noise_model.py -------------------------------------------------------------------------------- /test/terra/noise/test_noise_remapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/noise/test_noise_remapper.py -------------------------------------------------------------------------------- /test/terra/noise/test_noise_transformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/noise/test_noise_transformation.py -------------------------------------------------------------------------------- /test/terra/noise/test_quantum_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/noise/test_quantum_error.py -------------------------------------------------------------------------------- /test/terra/noise/test_readout_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/noise/test_readout_error.py -------------------------------------------------------------------------------- /test/terra/noise/test_standard_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/noise/test_standard_errors.py -------------------------------------------------------------------------------- /test/terra/pulse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/pulse/__init__.py -------------------------------------------------------------------------------- /test/terra/pulse/de/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/pulse/de/__init__.py -------------------------------------------------------------------------------- /test/terra/pulse/de/test_de_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/pulse/de/test_de_methods.py -------------------------------------------------------------------------------- /test/terra/pulse/de/test_type_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/pulse/de/test_type_utils.py -------------------------------------------------------------------------------- /test/terra/pulse/test_duffing_model_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/pulse/test_duffing_model_generators.py -------------------------------------------------------------------------------- /test/terra/pulse/test_system_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/pulse/test_system_models.py -------------------------------------------------------------------------------- /test/terra/reference/ref_1q_clifford.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/reference/ref_1q_clifford.py -------------------------------------------------------------------------------- /test/terra/reference/ref_2q_clifford.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/reference/ref_2q_clifford.py -------------------------------------------------------------------------------- /test/terra/reference/ref_algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/reference/ref_algorithms.py -------------------------------------------------------------------------------- /test/terra/reference/ref_conditionals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/reference/ref_conditionals.py -------------------------------------------------------------------------------- /test/terra/reference/ref_diagonal_gate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/reference/ref_diagonal_gate.py -------------------------------------------------------------------------------- /test/terra/reference/ref_initialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/reference/ref_initialize.py -------------------------------------------------------------------------------- /test/terra/reference/ref_kraus_noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/reference/ref_kraus_noise.py -------------------------------------------------------------------------------- /test/terra/reference/ref_measure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/reference/ref_measure.py -------------------------------------------------------------------------------- /test/terra/reference/ref_multiplexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/reference/ref_multiplexer.py -------------------------------------------------------------------------------- /test/terra/reference/ref_non_clifford.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/reference/ref_non_clifford.py -------------------------------------------------------------------------------- /test/terra/reference/ref_pauli_noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/reference/ref_pauli_noise.py -------------------------------------------------------------------------------- /test/terra/reference/ref_readout_noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/reference/ref_readout_noise.py -------------------------------------------------------------------------------- /test/terra/reference/ref_reset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/reference/ref_reset.py -------------------------------------------------------------------------------- /test/terra/reference/ref_reset_noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/reference/ref_reset_noise.py -------------------------------------------------------------------------------- /test/terra/reference/ref_snapshot_amplitudes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/reference/ref_snapshot_amplitudes.py -------------------------------------------------------------------------------- /test/terra/reference/ref_snapshot_expval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/reference/ref_snapshot_expval.py -------------------------------------------------------------------------------- /test/terra/reference/ref_snapshot_probabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/reference/ref_snapshot_probabilities.py -------------------------------------------------------------------------------- /test/terra/reference/ref_snapshot_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/reference/ref_snapshot_state.py -------------------------------------------------------------------------------- /test/terra/reference/ref_unitary_gate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/reference/ref_unitary_gate.py -------------------------------------------------------------------------------- /test/terra/test_python_to_cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/test_python_to_cpp.py -------------------------------------------------------------------------------- /test/terra/utils/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/utils/mock.py -------------------------------------------------------------------------------- /test/terra/utils/multiplexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/utils/multiplexer.py -------------------------------------------------------------------------------- /test/terra/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/test/terra/utils/utils.py -------------------------------------------------------------------------------- /tools/verify_wheels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/tools/verify_wheels.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoyilunnn/q-gpu/HEAD/tox.ini --------------------------------------------------------------------------------