tequila-basic 1.9.6__py3-none-any.whl → 1.9.8__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tequila/apps/unary_state_prep.py +1 -2
- tequila/circuit/circuit.py +2 -5
- tequila/hamiltonian/paulis.py +4 -3
- tequila/quantumchemistry/encodings.py +2 -2
- tequila/quantumchemistry/orbital_optimizer.py +9 -2
- tequila/quantumchemistry/qc_base.py +32 -19
- tequila/simulators/simulator_api.py +25 -9
- tequila/simulators/simulator_base.py +46 -15
- tequila/simulators/simulator_cirq.py +6 -6
- tequila/simulators/simulator_pyquil.py +3 -3
- tequila/simulators/simulator_qibo.py +14 -16
- tequila/simulators/simulator_qiskit.py +86 -49
- tequila/simulators/simulator_qiskit_gpu.py +9 -0
- tequila/simulators/simulator_qlm.py +3 -3
- tequila/simulators/simulator_qulacs.py +24 -19
- tequila/simulators/simulator_qulacs_gpu.py +6 -4
- tequila/simulators/simulator_symbolic.py +15 -23
- tequila/utils/bitstrings.py +25 -11
- tequila/version.py +1 -1
- tequila/wavefunction/qubit_wavefunction.py +338 -244
- {tequila_basic-1.9.6.dist-info → tequila_basic-1.9.8.dist-info}/METADATA +11 -13
- {tequila_basic-1.9.6.dist-info → tequila_basic-1.9.8.dist-info}/RECORD +25 -24
- {tequila_basic-1.9.6.dist-info → tequila_basic-1.9.8.dist-info}/WHEEL +1 -1
- {tequila_basic-1.9.6.dist-info → tequila_basic-1.9.8.dist-info}/LICENSE +0 -0
- {tequila_basic-1.9.6.dist-info → tequila_basic-1.9.8.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: tequila-basic
|
3
|
-
Version: 1.9.
|
3
|
+
Version: 1.9.8
|
4
4
|
Summary: A High-Level Abstraction Framework for Quantum Algorithms
|
5
5
|
Home-page: https://github.com/tequilahub/tequila
|
6
6
|
Author: Tequila Developers
|
@@ -8,13 +8,13 @@ Author-email: jakob.kottmann@gmail.com
|
|
8
8
|
Description-Content-Type: text/markdown
|
9
9
|
License-File: LICENSE
|
10
10
|
Requires-Dist: numpy
|
11
|
-
Requires-Dist: scipy
|
11
|
+
Requires-Dist: scipy
|
12
12
|
Requires-Dist: sympy
|
13
13
|
Requires-Dist: autograd
|
14
14
|
Requires-Dist: setuptools
|
15
15
|
Requires-Dist: pytest
|
16
|
-
Requires-Dist: openfermion
|
17
|
-
Requires-Dist: dataclasses
|
16
|
+
Requires-Dist: openfermion~=1.0
|
17
|
+
Requires-Dist: dataclasses; python_version < "3.7"
|
18
18
|
|
19
19
|
[](LICENCE) [](https://zenodo.org/badge/latestdoi/259718912) [](https://badge.fury.io/py/tequila-basic) 
|
20
20
|
|
@@ -24,11 +24,14 @@ Tequila is an abstraction framework for (variational) quantum algorithms.
|
|
24
24
|
It operates on abstract data structures allowing the formulation, combination, automatic differentiation and optimization of generalized objectives.
|
25
25
|
Tequila can execute the underlying quantum expectation values on state of the art simulators as well as on real quantum devices.
|
26
26
|
|
27
|
+
# Getting Started
|
28
|
+
|
29
|
+
Get started with our collection of
|
30
|
+
- *[Tutorials](https://tequilahub.github.io/tequila-tutorials/)*
|
31
|
+
|
32
|
+
Further sources:
|
27
33
|
- [overview article](https://arxiv.org/abs/2011.03057)
|
28
34
|
- [tequila in a nutshell](https://kottmanj.github.io/tequila-in-a-nutshell/#/)
|
29
|
-
- [getting started](https://jakobkottmann.com/posts/tq-get-started/)
|
30
|
-
- [circuits in tequila](https://jakobkottmann.com/posts/tq-circuits/)
|
31
|
-
- [notebook collection](https://github.com/tequilahub/tequila-tutorials)
|
32
35
|
- [talks and slides](https://kottmanj.github.io/talks_and_material/)
|
33
36
|
|
34
37
|
# Installation
|
@@ -357,12 +360,7 @@ You can avoid it by downgrading cirq and openfermion
|
|
357
360
|
```bash
|
358
361
|
pip install --upgrade "openfermion<=1.0.0"
|
359
362
|
pip install --upgrade "cirq<=0.9.1"
|
360
|
-
```
|
361
|
-
|
362
|
-
|
363
|
-
## Qiskit backend
|
364
|
-
Qiskit version 0.25 is not yet supported.
|
365
|
-
`pip install --upgrade qiskit<0.25` fixes potential issues. If not: Please let us know.
|
363
|
+
```
|
366
364
|
|
367
365
|
## Circuit drawing
|
368
366
|
Standard graphical circuit representation within a Jupyter environment is often done using `tq.draw`.
|
@@ -1,9 +1,9 @@
|
|
1
1
|
tequila/__init__.py,sha256=FV8-j7GEw_VYadsZUp3M2mGRQxVUYYG3W1jiI6in3CY,1959
|
2
2
|
tequila/autograd_imports.py,sha256=t7V5uYaI0GzjD7pSjkYtiaj3BzSvkm_RL2KcYfNwNhM,1529
|
3
|
-
tequila/version.py,sha256=
|
3
|
+
tequila/version.py,sha256=sZDtaWTr_VlllD_RWU9Qeudj0ybXPEgH4_O65N0Myp8,57
|
4
4
|
tequila/apps/__init__.py,sha256=GJb04napv8AAx5EHxS5C1CMv9kxQeu7aA-ZMWk6X_eQ,1623
|
5
5
|
tequila/apps/_unary_state_prep_impl.py,sha256=SzRtI0Nx29ODygvYYdC1NnSTCL70wY7NTAvqhiwpMDs,21757
|
6
|
-
tequila/apps/unary_state_prep.py,sha256=
|
6
|
+
tequila/apps/unary_state_prep.py,sha256=X6NTvni5BYzSNv1w-etohh1WwLAZpC06Y3TrSlGKc8U,9367
|
7
7
|
tequila/apps/adapt/__init__.py,sha256=_XTo-36nJRXdM13rbPkWEowFXGdViFduINwzri5i1iM,166
|
8
8
|
tequila/apps/adapt/adapt.py,sha256=Wf2k7DWJaos_7se9YU6zw6ZZorcNvwCY3HQbo-ha884,19529
|
9
9
|
tequila/apps/krylov/__init__.py,sha256=Kp3WBq-_OaaxRr8G8I_DBjvjkMKNa9cDWJHLRHGNGsU,33
|
@@ -13,7 +13,7 @@ tequila/apps/robustness/helpers.py,sha256=t8VgwMfgrhVaa0sNYaxfCIHsEQXL4WAEaT-UJG
|
|
13
13
|
tequila/apps/robustness/interval.py,sha256=m3D1wBRTLRpGQdnabzcDrlxWqN0uCf80NG-enbZrcoY,24735
|
14
14
|
tequila/circuit/__init__.py,sha256=ZgoUEjU_NggxjKYkJjh5aO-6VdUjnO5CLxKB44rHzQc,301
|
15
15
|
tequila/circuit/_gates_impl.py,sha256=iB40Sg9l9UoCCayu0l4vGjgvEHUVVbXMaGdUtXIHa1w,17821
|
16
|
-
tequila/circuit/circuit.py,sha256=
|
16
|
+
tequila/circuit/circuit.py,sha256=5XqOddRAQMgjO_zyRDHQvtGyWt8gBW0seorejsV9KK4,31874
|
17
17
|
tequila/circuit/compiler.py,sha256=fsHnnNZo43VWUl_n34P21b4GAi7k2kwoYdx0xlbAuZY,32685
|
18
18
|
tequila/circuit/gates.py,sha256=buNzNZaflRzVFe1oihCprUBZVL5KcZXyd_kqiWkNbTo,35923
|
19
19
|
tequila/circuit/gradient.py,sha256=Y4dNL6nkZUEkKJvaA3hxaSEa8_b_3XZwxy3j8tGsOmA,10465
|
@@ -30,7 +30,7 @@ tequila/grouping/fermionic_functions.py,sha256=v9R9L43t3CNQlIo-k3uTk2nlP69TyVyyF
|
|
30
30
|
tequila/grouping/fermionic_methods.py,sha256=-vzRE5wLw49tTLPP0EUAKq-di6BTT2bc1EwA7tdnBns,27807
|
31
31
|
tequila/grouping/overlapping_methods.py,sha256=A8oVXInkZxqrBh_SoOcUwdAca6dbiF5O4YheQFAaU1s,11059
|
32
32
|
tequila/hamiltonian/__init__.py,sha256=X7edib1ejUf01hb8Jk5IHYnAP51WoN0UAhg4yLRicFI,119
|
33
|
-
tequila/hamiltonian/paulis.py,sha256=
|
33
|
+
tequila/hamiltonian/paulis.py,sha256=MEgeZnPeymuEXokA7uzIcPrbtpNW4ybb6CgEOLe4eXY,9032
|
34
34
|
tequila/hamiltonian/paulistring.py,sha256=zX3G6nljdYeQnhHsOAG0Pwx-7CJVMOc6SPV8d5ZYK1U,351
|
35
35
|
tequila/hamiltonian/qubit_hamiltonian.py,sha256=jPEZ0FxVVHNKou2iS4cZK0ysByOZSbY-VZ6XFLxTakg,21391
|
36
36
|
tequila/ml/__init__.py,sha256=ojCJTssfvNxw2aFnXf7IWaOL8XigFxDZihFPZrVfjcg,120
|
@@ -49,37 +49,38 @@ tequila/optimizers/optimizer_gpyopt.py,sha256=-aVuutZUScyo6_4q4PyvMMa_OVd3L8ev9G
|
|
49
49
|
tequila/optimizers/optimizer_scipy.py,sha256=zqRVQ-Whr74KCGP7Zg1jQkl9S3j9s1kS4oCrCtX30gY,18949
|
50
50
|
tequila/quantumchemistry/__init__.py,sha256=KP99PNJYVwBcfQGwL-MB9IBLSBJNRPf-5WN9NLqT-Rg,7424
|
51
51
|
tequila/quantumchemistry/chemistry_tools.py,sha256=thHsovI-pMJJbEFBuYUAXg2ptitnGe9CeD0mdsh3iV8,46989
|
52
|
-
tequila/quantumchemistry/encodings.py,sha256=
|
52
|
+
tequila/quantumchemistry/encodings.py,sha256=GoQrEdzPO0EfvEtVu7_p18TG9VfcMYaqSnyjCmz49hE,11571
|
53
53
|
tequila/quantumchemistry/madness_interface.py,sha256=ivwDoaUDyAB6lJoFri0pZpvOZbihGavIuybcc40xTD0,36372
|
54
|
-
tequila/quantumchemistry/orbital_optimizer.py,sha256=
|
54
|
+
tequila/quantumchemistry/orbital_optimizer.py,sha256=plaMs77qbVOtrAVDVCwIqQdMOs3dGzC6-fIjm-LugUo,12670
|
55
55
|
tequila/quantumchemistry/psi4_interface.py,sha256=syNaDvlSmCsyB4f7idn3VGbMKyKo83vJHD5y5LpHwaM,29953
|
56
56
|
tequila/quantumchemistry/pyscf_interface.py,sha256=XgecUnKKg2rGiKqsYCJnDQ89ekkDkKuwc3qHULLMYck,6152
|
57
|
-
tequila/quantumchemistry/qc_base.py,sha256=
|
57
|
+
tequila/quantumchemistry/qc_base.py,sha256=IqPQ-FylaOsKtiLur8QWnvMqFBa_X_i3rdjMHSgQ9fA,107121
|
58
58
|
tequila/simulators/__init__.py,sha256=VFw4sJIt4Zc0-__eYnksN8Ku9qMhbPpHJEkXMWUiD30,4
|
59
|
-
tequila/simulators/simulator_api.py,sha256=
|
60
|
-
tequila/simulators/simulator_base.py,sha256=
|
61
|
-
tequila/simulators/simulator_cirq.py,sha256=
|
62
|
-
tequila/simulators/simulator_pyquil.py,sha256=
|
63
|
-
tequila/simulators/simulator_qibo.py,sha256=
|
64
|
-
tequila/simulators/simulator_qiskit.py,sha256=
|
65
|
-
tequila/simulators/
|
66
|
-
tequila/simulators/
|
67
|
-
tequila/simulators/
|
68
|
-
tequila/simulators/
|
59
|
+
tequila/simulators/simulator_api.py,sha256=qz5dXCv-C4JXz09WK6eF1jBSMRuIqFIMAfPvNoapOrs,25394
|
60
|
+
tequila/simulators/simulator_base.py,sha256=j0v00qA4WFE8agOmcoKGCDH85s40UJAX6gbjYrYamI8,34838
|
61
|
+
tequila/simulators/simulator_cirq.py,sha256=j2noXfhqcyPJoramWik_PLwKxNNq_rB794PkIZt8ktA,16552
|
62
|
+
tequila/simulators/simulator_pyquil.py,sha256=1n6bQqoDUiXulBJX_9t8knl439aKpIeepRBwcyU72QU,24264
|
63
|
+
tequila/simulators/simulator_qibo.py,sha256=8A2YZBmAi23tErfR28eqdWWuwulgblFGZ9Hbrwy7Ht8,25220
|
64
|
+
tequila/simulators/simulator_qiskit.py,sha256=8go0PehReRtmdk-onJQ7hKhbM7bKLwhr7YCaSTow2Go,25046
|
65
|
+
tequila/simulators/simulator_qiskit_gpu.py,sha256=EXlHtpl5w1bqlYOR1aPIZXFO_Jei5JJTWTESnRli9cc,339
|
66
|
+
tequila/simulators/simulator_qlm.py,sha256=OQPZEdbM0UkfzoTx2pa0SM14cN7r6PsGS1cDlfJqTl8,15431
|
67
|
+
tequila/simulators/simulator_qulacs.py,sha256=L7pWxSmbUkFEbTffikvnzXLhqjhFbjIy6O0YhZXlWXc,19829
|
68
|
+
tequila/simulators/simulator_qulacs_gpu.py,sha256=3yVIACmQYQp_6ntvjvaGiYoHXbc1mKtb_Oa6Mo-2bSc,557
|
69
|
+
tequila/simulators/simulator_symbolic.py,sha256=nyS1lwk_dxcsTWKQ2YL4kvdl-kTdC0NoB-EmH6seP-M,5074
|
69
70
|
tequila/tools/__init__.py,sha256=mJChgkme6v6Ohj2s3tJ96Mq4U0kmVmc6d8Y6_1pEZMg,72
|
70
71
|
tequila/tools/convenience.py,sha256=9WYQJvx5i2QwQG8c7lssYTUv5hzW8h16JTr1GHxYf18,1291
|
71
72
|
tequila/tools/qng.py,sha256=p19A1rcKo06DAyBVUCQzNhwIGni6eAT6IGPnEPhKa4Y,21326
|
72
73
|
tequila/tools/random_generators.py,sha256=UwkDMmNxxSPgaH1LNBswZUiHnLDd8arI3F5QshfBtBY,3417
|
73
74
|
tequila/utils/__init__.py,sha256=nlulDMHcq-XyBZf3NPx2bn_tcixi2mvhRc6MhU9TBWI,317
|
74
|
-
tequila/utils/bitstrings.py,sha256=
|
75
|
+
tequila/utils/bitstrings.py,sha256=81U4Mg6voNzWfQVrrhqaqcOsQnPPkFI2UWQDSAlsMdo,5941
|
75
76
|
tequila/utils/exceptions.py,sha256=QK7AcDO2-7Itr8Aw6rLP_WtSkH6rfT8PHWcvNM6sQnc,1188
|
76
77
|
tequila/utils/joined_transformation.py,sha256=R2-aMTi6h7ZnjYUnX6cvFuPEQwgf49W0w33q6018qdc,2013
|
77
78
|
tequila/utils/keymap.py,sha256=RgQzeHEfRVee0-uoH-QsLYsGsXyMhEp3n33KCH-EV2k,3735
|
78
79
|
tequila/utils/misc.py,sha256=e62ASkFReaLJQXnBXzyYukzXZnXNoURsM1luoMeIXiE,919
|
79
80
|
tequila/wavefunction/__init__.py,sha256=q4DVL0lGFg03PogRMYA6S8MQqqmLYQiU9VNOF-YQxfQ,50
|
80
|
-
tequila/wavefunction/qubit_wavefunction.py,sha256=
|
81
|
-
tequila_basic-1.9.
|
82
|
-
tequila_basic-1.9.
|
83
|
-
tequila_basic-1.9.
|
84
|
-
tequila_basic-1.9.
|
85
|
-
tequila_basic-1.9.
|
81
|
+
tequila/wavefunction/qubit_wavefunction.py,sha256=2S3vUMwbuUOuFrZ_-ST6s7CU9nSjKTql7rCoc39UPQ8,17529
|
82
|
+
tequila_basic-1.9.8.dist-info/LICENSE,sha256=oG1FtUav5_xrym9ByiG5emJDQRcbnAfTB08fRV9TCiE,1114
|
83
|
+
tequila_basic-1.9.8.dist-info/METADATA,sha256=RRoQh2vohcUKQGx-Iysn7qOHZHqY5WhHma2eLM5uuDQ,19170
|
84
|
+
tequila_basic-1.9.8.dist-info/WHEEL,sha256=R06PA3UVYHThwHvxuRWMqaGcr-PuniXahwjmQRFMEkY,91
|
85
|
+
tequila_basic-1.9.8.dist-info/top_level.txt,sha256=VBH0gl6mDMbcLHKlO0yEAqtcq08DqBHz4gRJ9jafl5w,8
|
86
|
+
tequila_basic-1.9.8.dist-info/RECORD,,
|
File without changes
|
File without changes
|