repo
stringclasses
900 values
file
stringclasses
754 values
content
stringlengths
4
215k
https://github.com/rodneyosodo/variational-quantum-classifier-on-heartattack
rodneyosodo
# Basis encoding example with PennyLane import pandas as pd import pennylane as qml from pennylane import numpy as np # import the template from pennylane.templates.layers import StronglyEntanglingLayers from sklearn.utils import shuffle from sklearn.preprocessing import normalize from pennylane.templates.embed...
https://github.com/rodneyosodo/variational-quantum-classifier-on-heartattack
rodneyosodo
from qiskit.ml.datasets import * from qiskit import QuantumCircuit from qiskit.aqua.components.optimizers import COBYLA, ADAM, SPSA, SLSQP, POWELL, L_BFGS_B, TNC, AQGD from qiskit.circuit.library import ZZFeatureMap, RealAmplitudes from qiskit.quantum_info import Statevector import numpy as np import pandas as ...
https://github.com/rodneyosodo/variational-quantum-classifier-on-heartattack
rodneyosodo
import pandas as pd import numpy as np import matplotlib.pyplot as plt pd.set_option('display.max_rows', None) pd.set_option('display.max_columns', None) pd.set_option('display.width', None) pd.set_option('display.max_colwidth', -1) df = pd.read_csv("../../Data/Processed/costs.csv") df.columns = ['Spec', ...
https://github.com/rodneyosodo/variational-quantum-classifier-on-heartattack
rodneyosodo
from qiskit.ml.datasets import * from qiskit import QuantumCircuit from qiskit.aqua.components.optimizers import COBYLA, ADAM, SPSA, SLSQP, POWELL, L_BFGS_B, TNC, AQGD from qiskit.circuit.library import ZZFeatureMap, RealAmplitudes, ZFeatureMap, PauliFeatureMap from qiskit.quantum_info import Statevector import ...
https://github.com/rodneyosodo/variational-quantum-classifier-on-heartattack
rodneyosodo
import pandas as pd import numpy as np import matplotlib.pyplot as plt import seaborn as sns import pandas_profiling as pp from sklearn.datasets import load_wine %matplotlib inline # Constants DATA_PATH = "../../Data/Raw/data.csv" CLEAN_DATA_PATH = "../../Data/Processed/winedata.csv" raw_data = load_wine(...
https://github.com/rodneyosodo/variational-quantum-classifier-on-heartattack
rodneyosodo
from qiskit.ml.datasets import * from qiskit import QuantumCircuit from qiskit.aqua.components.optimizers import COBYLA, ADAM, SPSA, SLSQP, POWELL, L_BFGS_B, TNC, AQGD from qiskit.circuit.library import ZZFeatureMap, RealAmplitudes from qiskit.quantum_info import Statevector import numpy as np import pandas as ...
https://github.com/rodneyosodo/variational-quantum-classifier-on-heartattack
rodneyosodo
import pandas as pd import numpy as np import matplotlib.pyplot as plt import seaborn as sns import pandas_profiling as pp from sklearn.datasets import load_wine, load_iris %matplotlib inline # Constants CLEAN_DATA_PATH = "../../Data/Processed/iris_csv.csv" raw_data = load_iris() features = pd.DataFrame...
https://github.com/rodneyosodo/variational-quantum-classifier-on-heartattack
rodneyosodo
from qiskit.ml.datasets import * from qiskit import QuantumCircuit from qiskit.aqua.components.optimizers import COBYLA, ADAM, SPSA, SLSQP, POWELL, L_BFGS_B, TNC, AQGD from qiskit.circuit.library import ZZFeatureMap, RealAmplitudes from qiskit.quantum_info import Statevector import numpy as np import pandas as ...
https://github.com/rodneyosodo/variational-quantum-classifier-on-heartattack
rodneyosodo
import pandas as pd import numpy as np import matplotlib.pyplot as plt pd.set_option('display.max_rows', None) pd.set_option('display.max_columns', None) pd.set_option('display.width', None) pd.set_option('display.max_colwidth', -1) df = pd.read_csv("../../Data/Processed/winecosts.csv") df.columns = ['Spe...
https://github.com/rodneyosodo/variational-quantum-classifier-on-heartattack
rodneyosodo
import pandas as pd import numpy as np import matplotlib.pyplot as plt pd.set_option('display.max_rows', None) pd.set_option('display.max_columns', None) pd.set_option('display.width', None) pd.set_option('display.max_colwidth', -1) df = pd.read_csv("../../Data/Processed/iriscost.csv") df.columns = ['Spec...
https://github.com/rodneyosodo/variational-quantum-classifier-on-heartattack
rodneyosodo
#!/usr/bin/env python # coding: utf-8 from qiskit import QuantumCircuit from qiskit.aqua.components.optimizers import COBYLA, ADAM, SPSA from qiskit.circuit.library import ZZFeatureMap, RealAmplitudes, ZFeatureMap, PauliFeatureMap from qiskit.quantum_info import Statevector import numpy as np import pandas as ...
https://github.com/MuhammadMiqdadKhan/Quantum-Teleportation-Using-Qiskit-and-Real-Quantum-Computer-Tutorial
MuhammadMiqdadKhan
# Do the necessary imports import numpy as np from qiskit import QuantumCircuit, QuantumRegister, ClassicalRegister, execute, BasicAer, IBMQ from qiskit.visualization import plot_histogram, plot_bloch_multivector qr = QuantumRegister(3) # Protocol uses 3 qubits crz = ClassicalRegister(1) # and 2 classical bit...
https://github.com/qiskit-community/qiskit-alt
qiskit-community
import subprocess def python_commands(commands): try: result = subprocess.run( ['python', '-c', commands], check=True, capture_output=True, encoding='utf8' ) except subprocess.CalledProcessError as err: return err return result def basic_inits(): all_c...
https://github.com/qiskit-community/qiskit-alt
qiskit-community
# Benchmark qiskit_alt constructing Fermionic operators from pyscf integrals. import qiskit_alt qiskit_alt.project.ensure_init() import timeit def make_setup_code(basis, geometry): return f""" import qiskit_alt h2_geometry = [['H', [0., 0., 0.]], ['H', [0., 0., 0.7414]]] h2o_geometry = [['O', [0., 0...
https://github.com/qiskit-community/qiskit-alt
qiskit-community
# Benchmark qiskit_alt transforming an operator from the computational- to the Pauli basis. import qiskit_alt qiskit_alt.project.ensure_init() import timeit Main = qiskit_alt.project.julia.Main def make_setup_code(nqubits): return f""" import qiskit_alt from qiskit_alt.pauli_operators import PauliSum_...
https://github.com/qiskit-community/qiskit-alt
qiskit-community
# Benchmark qiskit_alt peforming the Jordan-Wigner transform on a Fermi operator. import qiskit_alt qiskit_alt.project.ensure_init() import timeit def make_setup_code(basis, geometry): return f""" import qiskit_alt.electronic_structure h2_geometry = [['H', [0., 0., 0.]], ['H', [0., 0., 0.7414]]] h2o...
https://github.com/qiskit-community/qiskit-alt
qiskit-community
# Benchmark qiskit_alt creating a SparsePauliOp from a list of strings. import sys import qiskit_alt qiskit_alt.project.ensure_init() import random from timeit import timeit Main = qiskit_alt.project.julia.Main QuantumOps = qiskit_alt.project.simple_import("QuantumOps") from qiskit_alt.pauli_operators imp...
https://github.com/qiskit-community/qiskit-alt
qiskit-community
import subprocess import shutil import os # Include these lines if we run all files in one process import qiskit_alt qiskit_alt.project.ensure_init() bench_scripts = [ "fermionic_alt_time.py", "fermionic_nature_time.py", "from_matrix_alt.py", "from_matrix_quantum_info.py", "jordan_w...
https://github.com/qiskit-community/qiskit-alt
qiskit-community
import subprocess import shutil import os # Include these lines if we run all files in one process import qiskit_alt qiskit_alt.project.ensure_init() bench_scripts = [ "fermionic_alt_time.py", "from_matrix_alt.py", "jordan_wigner_alt_time.py", "pauli_from_list_alt.py" ] _python...
https://github.com/qiskit-community/qiskit-alt
qiskit-community
import qiskit_alt qiskit_alt.project.ensure_init() # The following line would also initialize qiskit_alt behind the scenes, but we have made it explicity above. # import qiskit_alt.electronic_structure from qiskit.providers import aer # make sure this is available from qiskit_nature.drivers import UnitsType...
https://github.com/qiskit-community/qiskit-alt
qiskit-community
import qiskit_alt qiskit_alt.project.ensure_init(calljulia="pyjulia", compile=False, depot=True) julia = qiskit_alt.project.julia julia.Main.zeros(10) from qiskit_nature.drivers import UnitsType, Molecule from qiskit_nature.drivers.second_quantization import ElectronicStructureDriverType, ElectronicStructureMo...
https://github.com/qiskit-community/qiskit-alt
qiskit-community
import qiskit_alt qiskit_alt.project.ensure_init(calljulia="juliacall", compile=False) julia = qiskit_alt.project.julia Main = julia.Main julia.Main.zeros(3) type(julia.Main.zeros(3)) from qiskit_nature.drivers import UnitsType, Molecule from qiskit_nature.drivers.second_quantization import ElectronicStruc...
https://github.com/qiskit-community/qiskit-alt
qiskit-community
from qiskit.algorithms import VQE from qiskit.algorithms.optimizers import COBYLA from qiskit.opflow import X, Y, Z, I, PauliSumOp from qiskit.circuit.library import TwoLocal from qiskit import Aer import numpy as np import qiskit_alt, qiskit_alt.electronic_structure from qiskit_alt.pauli_operators import ...
https://github.com/qiskit-community/qiskit-alt
qiskit-community
import qiskit_alt geometry = [['H', [0., 0., 0.]], ['H', [0., 0., 0.7414]]] #basis = 'sto3g' basis = '631++g' fermi_op = qiskit_alt.fermionic_hamiltonian(geometry, basis) pauli_op = qiskit_alt.jordan_wigner(fermi_op) #basis = '631g' #basis = 'dzvp' # Too big #basis = 'dzp' #basis = 'dzvp2'
https://github.com/qiskit-community/qiskit-alt
qiskit-community
import qiskit_alt def do_jw_problem(): # qiskit_alt.Main.eval('include("examples/jw_example.jl")') qiskit_alt.Main.eval('include("jw_example.jl")') pauli_op = qiskit_alt.Main.eval("pauli_op") spop_jl = qiskit_alt.QiskitQuantumInfo.SparsePauliOp(pauli_op) spop = qiskit_alt.jlSparsePauliOp(spop...
https://github.com/qiskit-community/qiskit-alt
qiskit-community
import qiskit_alt #geometry = [['H', [0., 0., 0.]], ['H', [0., 0., 0.7414]]] geometry = [['O', [0., 0., 0.]], ['H', [0.757, 0.586, 0.]], ['H', [-0.757, 0.586, 0.]]] #basis = 'sto3g' #basis = '631g' basis = 'dzvp2' pauli_op = qiskit_alt.jordan_wigner(geometry, basis)
https://github.com/qiskit-community/qiskit-alt
qiskit-community
import pytest import qiskit_alt project = qiskit_alt.project project.ensure_init() # calljulia="pyjulia" import qiskit_alt.electronic_structure Main = project.julia.Main def test_always_passes(): assert True def test_interface_lib(): assert qiskit_alt.project.julia.__name__ == 'julia' def ...
https://github.com/qiskit-community/qiskit-alt
qiskit-community
import pytest import qiskit_alt project = qiskit_alt.project project.ensure_init(calljulia="juliacall") def test_always_passes(): assert True def test_interface_lib(): assert qiskit_alt.project.julia.__name__ == 'juliacall' def test_Main(): Main = qiskit_alt.project.julia.Main assert Mai...
https://github.com/BryceFuller/qiskit_camp
BryceFuller
# Python import logging from copy import deepcopy from functools import partial from contextlib import contextmanager import time from multideterminant_prep import PrepareMultiDeterminantState as pmds # Local # External import pandas as pd import numpy as np import xarray as xr import xyzpy as xy f...
https://github.com/BryceFuller/qiskit_camp
BryceFuller
#!/usr/bin/env python # coding: utf-8 # Python import math # Local # External import numpy as np from qiskit import QuantumCircuit, QuantumRegister import qiskit.aqua def PrepareMultiDeterminantState(weights, determinants, normalize=True, mode='basic'): ''' Constructs multideterminant s...
https://github.com/BryceFuller/qiskit_camp
BryceFuller
%matplotlib inline import xarray as xr import seaborn as sns import matplotlib.pyplot as plt get_ipython().run_line_magic('pylab', 'inline') #sns.set_style("darkgrid") pylab.rcParams['figure.figsize'] = (16, 8) pylab.rcParams.update({'font.size': 10}) df = xr.open_dataset("../experiment_results/experiments_...
https://github.com/BryceFuller/qiskit_camp
BryceFuller
%matplotlib inline import sys sys.path.append("..") import compress from qiskit import QuantumRegister, ClassicalRegister, QuantumCircuit, execute, Aer import numpy as np from functools import partial from qiskit.aqua.components.optimizers import SPSA from multideterminant_prep import PrepareMultiDeterminantSta...
https://github.com/BryceFuller/qiskit_camp
BryceFuller
# Python import logging # Local import compress # External import pytest import numpy as np from qiskit import QuantumRegister, QuantumCircuit def test_compression_model(): # Create a simple circuit that applies one simple flip. q0 = QuantumRegister(1, 'q0') circuit = QuantumCircuit(q0) ...
https://github.com/HayleySummer/Qiskit_Hackathon_Europe
HayleySummer
import numpy from PIL import Image from IPython.display import Image as dispImage #Generate initial image data = numpy.zeros((8, 8, 3), dtype=numpy.uint8) white = [255, 255, 255] grey = [128, 128, 128] black = [0,0,0] boardRows = 8 boardColumns = 8 for i in range(boardRows): for j in range(boardCol...
https://github.com/HayleySummer/Qiskit_Hackathon_Europe
HayleySummer
import numpy as np # Importing standard Qiskit libraries from qiskit import QuantumCircuit, transpile, Aer, IBMQ, ClassicalRegister, QuantumRegister, execute from qiskit.tools.jupyter import * from qiskit.visualization import * from ibm_quantum_widgets import * # import basic plot tools from qiskit.tools.vis...
https://github.com/jhlee29/quantum-meets-hangul
jhlee29
from PIL import Image, ImageOps import os, glob import numpy as np from sklearn import model_selection #cross_validation # from keras.utils import np_utils # General imports import os import gzip import numpy as np import matplotlib.pyplot as plt from pylab import cm import warnings warnings.filterwarni...
https://github.com/jhlee29/quantum-meets-hangul
jhlee29
# from PIL import Image from PIL import Image, ImageOps import os, glob import numpy as np from sklearn import model_selection #cross_validation # from keras.utils import np_utils # General imports import os import gzip import numpy as np import matplotlib.pyplot as plt from pylab import cm import warning...
https://github.com/jhlee29/quantum-meets-hangul
jhlee29
# from PIL import Image from PIL import Image, ImageOps import os, glob import numpy as np from sklearn import model_selection #cross_validation # General imports import os import gzip import numpy as np import matplotlib.pyplot as plt from pylab import cm import warnings # input classes = ["bul", "pul...
https://github.com/andre-juan/qiskit_certificate_sample_test
andre-juan
import numpy as np import pandas as pd import matplotlib.pyplot as plt import seaborn as sns # main classes and functions from qiskit import QuantumRegister, ClassicalRegister, QuantumCircuit, Aer, BasicAer, execute # visualization stuff from qiskit.visualization import (plot_histogram, plot_bloch_multivecto...
https://github.com/mberna/qce22-qiskit-runtime-tutorial
mberna
# define Hamiltonian from qiskit.opflow import PauliSumOp H = PauliSumOp.from_list([('XYII', 1), ('IYZI', 2), ('IIZX', 3), ('XIII', 4), ('IYII', 5)]) print(H) from qiskit.circuit.library import EfficientSU2 qc = EfficientSU2(num_qubits=H.num_qubits, reps=1) qc_with_meas = qc.measure_all(inplace=False) qc...
https://github.com/mberna/qce22-qiskit-runtime-tutorial
mberna
# instantiate runtime service from qiskit_ibm_runtime import QiskitRuntimeService QiskitRuntimeService.save_account(channel="ibm_quantum", token="MY_IBM_QUANTUM_TOKEN") service = QiskitRuntimeService(channel="ibm_quantum") # import required libraries and instantiate runtime service from qiskit_ibm_runtime impo...
https://github.com/geduardo/Q-Snake-Qiskitcamp-Europe-2019
geduardo
import numpy as np from qiskit import * def Qand(First_bool,Second_bool): #input two booleans into the function a = int(First_bool) b = int(Second_bool) #quantum circuit that applies a Toffoli gate q = QuantumRegister(3) qc = QuantumCircuit(q) if a is 1: qc.x(0) ...
https://github.com/geduardo/Q-Snake-Qiskitcamp-Europe-2019
geduardo
%matplotlib notebook import pew pew.init() screen=pew.Pix() # First we set variables of the game: # The snake will be represented by a list of (x,y) coordinates. The last element of the list (snake[-1]) will # represent the head of the snake. The 0th element of the list will be the last pixel of the tail. ...
https://github.com/geduardo/Q-Snake-Qiskitcamp-Europe-2019
geduardo
import pew_tunnel as pew import random import pygame from qiskit import QuantumCircuit, QuantumRegister, ClassicalRegister, execute, Aer import numpy as np ######################################################################### #FUNCTIONS ######################################################################...
https://github.com/geduardo/Q-Snake-Qiskitcamp-Europe-2019
geduardo
import pew_tunnel as pew import random import pygame from qiskit import QuantumCircuit, QuantumRegister, ClassicalRegister, execute, Aer import numpy as np ######################################################################### #FUNCTIONS ######################################################################...
https://github.com/geduardo/Q-Snake-Qiskitcamp-Europe-2019
geduardo
import pew_tunnel as pew import random import pygame from qiskit import QuantumCircuit, QuantumRegister, ClassicalRegister, execute, Aer import numpy as np ######################################################################### #FUNCTIONS ######################################################################...
https://github.com/geduardo/Q-Snake-Qiskitcamp-Europe-2019
geduardo
import pew_tunnel as pew import pygame from qiskit import QuantumCircuit, QuantumRegister, ClassicalRegister, execute, Aer import numpy as np ######################################################################### #FUNCTIONS ######################################################################### simulato...
https://github.com/geduardo/Q-Snake-Qiskitcamp-Europe-2019
geduardo
import pew_circuit as pew from qiskit import QuantumCircuit, execute, Aer #from aether import QuantumCircuit, simulate import pygame import numpy as np simulator = Aer.get_backend('qasm_simulator') shot=1 def Qand(First_bool,Second_bool): First_bool=bool(First_bool) Second_bool=bool(Second_bool) ...
https://github.com/geduardo/Q-Snake-Qiskitcamp-Europe-2019
geduardo
import numpy as np from qiskit import * q = QuantumRegister(1) # Create a Quantum Circuit acting on a quantum register of n qubits qc = QuantumCircuit(q) qc.draw(filename="0.png") qc.h(0) qc.draw() qc.z(0) qc.draw() qc.h(0) qc.draw() qc.measure(0,0) qc.draw() from qiskit.visualization impo...
https://github.com/geduardo/Q-Snake-Qiskitcamp-Europe-2019
geduardo
import numpy as np from qiskit import * q = QuantumRegister(1) # Create a Quantum Circuit acting on a quantum register of n qubits qc = QuantumCircuit(q) diag = qc.draw(output="mpl") diag.savefig("1.png", format="png") qc.h(0) diag = qc.draw(output="mpl") diag.savefig("2.png", format="png") qc.z(0...
https://github.com/GlazeDonuts/QSVM
GlazeDonuts
import matplotlib.pyplot as plt import numpy as np from qiskit import Aer from qiskit.ml.datasets import ad_hoc_data, sample_ad_hoc_data, breast_cancer from qiskit.circuit.library import ZZFeatureMap from qiskit.aqua.utils import split_dataset_to_data_and_labels, map_label_to_class_name from qiskit.aqua import Qu...
https://github.com/petr-ivashkov/qiskit-cert-workbook
petr-ivashkov
#initialization import matplotlib.pyplot as plt import numpy as np #ignore deprecation warnings because they are annoying (not recommened generally) from warnings import simplefilter simplefilter(action='ignore', category=DeprecationWarning) # Importing standard Qiskit libraries from qiskit import * from ...
https://github.com/petr-ivashkov/qiskit-cert-workbook
petr-ivashkov
#initialization import matplotlib.pyplot as plt import numpy as np #ignore deprecation warnings because they are annoying (not recommened generally) from warnings import simplefilter simplefilter(action='ignore', category=DeprecationWarning) # Importing standard Qiskit libraries from qiskit import * from ...
https://github.com/qclib/qclib
qclib
# This code is part of Qiskit. # # (C) Copyright IBM 2023 # # This code is licensed under the Apache License, Version 2.0. You may # obtain a copy of this license in the LICENSE.txt file in the root directory # of this source tree or at http://www.apache.org/licenses/LICENSE-2.0. # # Any modifications or deriva...
https://github.com/qclib/qclib
qclib
# This code is part of Qiskit. # # (C) Copyright IBM 2017, 2019. # # This code is licensed under the Apache License, Version 2.0. You may # obtain a copy of this license in the LICENSE.txt file in the root directory # of this source tree or at http://www.apache.org/licenses/LICENSE-2.0. # # Any modifications or...
https://github.com/qclib/qclib
qclib
import json import logging import numpy as np import warnings from functools import wraps from typing import Any, Callable, Optional, Tuple, Union from qiskit import IBMQ, QuantumCircuit, assemble from qiskit.circuit import Barrier, Gate, Instruction, Measure from qiskit.circuit.library import UGate, U3Ga...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# This code is part of Qiskit. # # (C) Copyright IBM 2023 # # This code is licensed under the Apache License, Version 2.0. You may # obtain a copy of this license in the LICENSE.txt file in the root directory # of this source tree or at http://www.apache.org/licenses/LICENSE-2.0. # # Any modifications or deriva...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# This code is part of Qiskit. # # (C) Copyright IBM 2019. # # This code is licensed under the Apache License, Version 2.0. You may # obtain a copy of this license in the LICENSE.txt file in the root directory # of this source tree or at http://www.apache.org/licenses/LICENSE-2.0. # # Any modifications or deriv...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# This code is part of Qiskit. # # (C) Copyright IBM 2017, 2019. # # This code is licensed under the Apache License, Version 2.0. You may # obtain a copy of this license in the LICENSE.txt file in the root directory # of this source tree or at http://www.apache.org/licenses/LICENSE-2.0. # # Any modifications or...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...
https://github.com/qclib/qclib
qclib
# Copyright 2021 qclib project. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in w...