tequila-basic 1.9.4__py3-none-any.whl → 1.9.6__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/circuit/gates.py +1 -1
- tequila/circuit/qasm.py +25 -11
- tequila/circuit/qpic.py +1 -1
- tequila/grouping/binary_rep.py +1 -1
- tequila/quantumchemistry/__init__.py +2 -0
- tequila/quantumchemistry/chemistry_tools.py +146 -19
- tequila/quantumchemistry/encodings.py +141 -47
- tequila/quantumchemistry/madness_interface.py +4 -1
- tequila/quantumchemistry/orbital_optimizer.py +10 -4
- tequila/quantumchemistry/pyscf_interface.py +1 -0
- tequila/quantumchemistry/qc_base.py +325 -24
- tequila/simulators/simulator_api.py +6 -1
- tequila/simulators/simulator_qiskit.py +14 -6
- tequila/tools/random_generators.py +17 -0
- tequila/version.py +1 -1
- {tequila_basic-1.9.4.dist-info → tequila_basic-1.9.6.dist-info}/METADATA +12 -10
- {tequila_basic-1.9.4.dist-info → tequila_basic-1.9.6.dist-info}/RECORD +20 -20
- {tequila_basic-1.9.4.dist-info → tequila_basic-1.9.6.dist-info}/WHEEL +1 -1
- {tequila_basic-1.9.4.dist-info → tequila_basic-1.9.6.dist-info}/LICENSE +0 -0
- {tequila_basic-1.9.4.dist-info → tequila_basic-1.9.6.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.6
|
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
|
@@ -32,7 +32,7 @@ Tequila can execute the underlying quantum expectation values on state of the ar
|
|
32
32
|
- [talks and slides](https://kottmanj.github.io/talks_and_material/)
|
33
33
|
|
34
34
|
# Installation
|
35
|
-
Recommended Python version is 3.
|
35
|
+
Recommended Python version is 3.9 (3.10).
|
36
36
|
Tequila supports linux, osx and windows. However, not all optional dependencies are supported on windows.
|
37
37
|
|
38
38
|
## Install from PyPi
|
@@ -258,14 +258,18 @@ A.G. Cadavid, I. Montalban, A. Dalal, E. Solano, N.N. Hegade
|
|
258
258
|
Efficient DCQO Algorithm within the Impulse Regime for Portfolio Optimization
|
259
259
|
[arxiv:2308.15475](https://arxiv.org/abs/2308.15475)
|
260
260
|
|
261
|
+
A. Anand, K. Brown
|
262
|
+
Hamiltonians, groups, graphs and ansätze
|
263
|
+
[arxiv:2312.17146](https://arxiv.org/abs/2312.17146)
|
264
|
+
|
265
|
+
P.W.K. Jensen, E.R. Kjellgren, P. Reinholdt, K.M. Ziems, S. Coriani, J. Kongsted, S. Sauer
|
266
|
+
Quantum Equation of Motion with Orbital Optimization for Computing Molecular Properties in Near-Term Quantum Computing
|
267
|
+
[arxiv:2312.12386](https://arxiv.org/abs/2312.12386)
|
268
|
+
|
261
269
|
Let us know, if you want your research project and/or tutorial to be included in this list!
|
262
270
|
|
263
271
|
# Dependencies
|
264
|
-
Support for
|
265
|
-
Tequila will then detect them automatically.
|
266
|
-
Currently those are: [Phoenics](https://github.com/aspuru-guzik-group/phoenics)
|
267
|
-
and [GPyOpt](https://sheffieldml.github.io/GPyOpt/).
|
268
|
-
Quantum backends are treated in the same way.
|
272
|
+
Support for specific backends (quantum simulators, optimizers, quantum chemistry) can be activated by intalling them in your environment.
|
269
273
|
|
270
274
|
## Quantum Backends
|
271
275
|
Currently supported
|
@@ -285,7 +289,7 @@ Currently supported
|
|
285
289
|
### [Psi4](https://github.com/psi4/psi4).
|
286
290
|
In a conda environment this can be installed with
|
287
291
|
```bash
|
288
|
-
conda install psi4 -c
|
292
|
+
conda install psi4 -c conda-forge
|
289
293
|
```
|
290
294
|
Here is a small [tutorial](https://nbviewer.org/github/tequilahub/tequila-tutorials/blob/main/chemistry/ChemistryModule.ipynb) that illustrates the usage.
|
291
295
|
|
@@ -399,5 +403,3 @@ Tequila runs on Mac OSX.
|
|
399
403
|
You might get in trouble with installing qulacs since it currently does not work with Apple's clang compiler.
|
400
404
|
You need to install latest GNU compile (at least gcc-7 and g++7) and set them as default before installing qulacs over pip.
|
401
405
|
|
402
|
-
## Qibo and GPyOpt
|
403
|
-
Currently you can't use Qibo and GPyOpt within the same environment.
|
@@ -1,6 +1,6 @@
|
|
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=eF54kEK_euvFMukAbk5bfXdISBhBIxw4DzJuY9f-z3c,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
6
|
tequila/apps/unary_state_prep.py,sha256=QCrD9Ty2RkXc1Mh_MitFPIdaPs_fLxp_dtWVBZi0tSE,9403
|
@@ -15,14 +15,14 @@ tequila/circuit/__init__.py,sha256=ZgoUEjU_NggxjKYkJjh5aO-6VdUjnO5CLxKB44rHzQc,3
|
|
15
15
|
tequila/circuit/_gates_impl.py,sha256=iB40Sg9l9UoCCayu0l4vGjgvEHUVVbXMaGdUtXIHa1w,17821
|
16
16
|
tequila/circuit/circuit.py,sha256=u1qwDFNrZspgea4BFcxwG-hk43ZKAtO2GVCchuctu4s,32044
|
17
17
|
tequila/circuit/compiler.py,sha256=fsHnnNZo43VWUl_n34P21b4GAi7k2kwoYdx0xlbAuZY,32685
|
18
|
-
tequila/circuit/gates.py,sha256=
|
18
|
+
tequila/circuit/gates.py,sha256=buNzNZaflRzVFe1oihCprUBZVL5KcZXyd_kqiWkNbTo,35923
|
19
19
|
tequila/circuit/gradient.py,sha256=Y4dNL6nkZUEkKJvaA3hxaSEa8_b_3XZwxy3j8tGsOmA,10465
|
20
20
|
tequila/circuit/noise.py,sha256=2LJ7Xq5f78x9p4imIz76l_lABQZwgNteNBFkWmUAQvo,8322
|
21
21
|
tequila/circuit/pyzx.py,sha256=XHhKoklhEcbpYkgkWHBLmKF-vyt_Oz-pX-Ctvd4nAOQ,1472
|
22
|
-
tequila/circuit/qasm.py,sha256=
|
23
|
-
tequila/circuit/qpic.py,sha256=
|
22
|
+
tequila/circuit/qasm.py,sha256=iB5stV6Exo3bAn7ac1PgFKH53XD-57b9lpmzjavJK7k,15418
|
23
|
+
tequila/circuit/qpic.py,sha256=sUMXsuYqIgtYF1Cs37Trxtaw6xHNjR4ykrM2fB4T2-I,10787
|
24
24
|
tequila/grouping/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
25
|
-
tequila/grouping/binary_rep.py,sha256=
|
25
|
+
tequila/grouping/binary_rep.py,sha256=MiiAr_xie2fanscfJN0EKToGlCH7po7dEOZKE7c81vM,19411
|
26
26
|
tequila/grouping/binary_utils.py,sha256=ubV8zv3nmz2o74A2W69LeCH6bIZZLHw48lk8ROv-jas,10916
|
27
27
|
tequila/grouping/compile_groups.py,sha256=a9it48zZxJs167nz1FWS_oEmPHPuXq0oLaCs1hJgyBE,66415
|
28
28
|
tequila/grouping/ev_utils.py,sha256=4pnzjRYyOB4KTZsfhs7YSU8Ez4jCJP3YSFKtMOjSwgY,8968
|
@@ -47,21 +47,21 @@ tequila/optimizers/optimizer_base.py,sha256=Nc1HwlgfeB6XifoaWdFVLhdyHfeqQuhLvOtm
|
|
47
47
|
tequila/optimizers/optimizer_gd.py,sha256=QF84K2XDn_-0w9htDlEpIaaGGtfudNamIvVCgx1JkuE,39059
|
48
48
|
tequila/optimizers/optimizer_gpyopt.py,sha256=-aVuutZUScyo6_4q4PyvMMa_OVd3L8ev9Ge2fXyWGV8,11280
|
49
49
|
tequila/optimizers/optimizer_scipy.py,sha256=zqRVQ-Whr74KCGP7Zg1jQkl9S3j9s1kS4oCrCtX30gY,18949
|
50
|
-
tequila/quantumchemistry/__init__.py,sha256=
|
51
|
-
tequila/quantumchemistry/chemistry_tools.py,sha256=
|
52
|
-
tequila/quantumchemistry/encodings.py,sha256=
|
53
|
-
tequila/quantumchemistry/madness_interface.py,sha256=
|
54
|
-
tequila/quantumchemistry/orbital_optimizer.py,sha256=
|
50
|
+
tequila/quantumchemistry/__init__.py,sha256=KP99PNJYVwBcfQGwL-MB9IBLSBJNRPf-5WN9NLqT-Rg,7424
|
51
|
+
tequila/quantumchemistry/chemistry_tools.py,sha256=thHsovI-pMJJbEFBuYUAXg2ptitnGe9CeD0mdsh3iV8,46989
|
52
|
+
tequila/quantumchemistry/encodings.py,sha256=YPpFjo4GacWYNxIvDSe6PhNSWBKu6Zm4IlEdy51eUJM,11577
|
53
|
+
tequila/quantumchemistry/madness_interface.py,sha256=ivwDoaUDyAB6lJoFri0pZpvOZbihGavIuybcc40xTD0,36372
|
54
|
+
tequila/quantumchemistry/orbital_optimizer.py,sha256=P_y4Q1qK-C46wgBjL4FBnSHeVSoKlzmkCG5eQWFU4_k,12376
|
55
55
|
tequila/quantumchemistry/psi4_interface.py,sha256=syNaDvlSmCsyB4f7idn3VGbMKyKo83vJHD5y5LpHwaM,29953
|
56
|
-
tequila/quantumchemistry/pyscf_interface.py,sha256=
|
57
|
-
tequila/quantumchemistry/qc_base.py,sha256=
|
56
|
+
tequila/quantumchemistry/pyscf_interface.py,sha256=XgecUnKKg2rGiKqsYCJnDQ89ekkDkKuwc3qHULLMYck,6152
|
57
|
+
tequila/quantumchemistry/qc_base.py,sha256=x8bQUW35rlHeqd2NheWQrr7cDWYf_niU4FOR5HY2Dgk,106384
|
58
58
|
tequila/simulators/__init__.py,sha256=VFw4sJIt4Zc0-__eYnksN8Ku9qMhbPpHJEkXMWUiD30,4
|
59
|
-
tequila/simulators/simulator_api.py,sha256=
|
59
|
+
tequila/simulators/simulator_api.py,sha256=Rvaljb2yFVMLHzj7ImzMCiTbY1fN59wcxFrE67n-QcU,24413
|
60
60
|
tequila/simulators/simulator_base.py,sha256=93d-f4fNkJ2CtpL9OpgKcypmZH96Mdd9ESdZYn9jH48,33174
|
61
61
|
tequila/simulators/simulator_cirq.py,sha256=z8G3dtZluaQZWPaNs4o3SBKfC33GClC-nplVOyhI1sg,16535
|
62
62
|
tequila/simulators/simulator_pyquil.py,sha256=Xm8fDg9PTFOg3apzd0T8hNKHy4sFrJIbSdnLtvtm-HM,24240
|
63
63
|
tequila/simulators/simulator_qibo.py,sha256=evOGd_-uyUQaQu60K02KIIqtTqjn1jW6XS9ux2TsC9M,25095
|
64
|
-
tequila/simulators/simulator_qiskit.py,sha256=
|
64
|
+
tequila/simulators/simulator_qiskit.py,sha256=d96aqOyQFyqM1W7aJBN_uhBYzt-WxsCZTlhEM-pJhLQ,23506
|
65
65
|
tequila/simulators/simulator_qlm.py,sha256=28c7GmRGWWkbVrvtaw9S4ERkL0fg-TGceayybtQ4K6w,15398
|
66
66
|
tequila/simulators/simulator_qulacs.py,sha256=0XdCA3y7KCqYfL7S4FOssZgxAgs0Hd1GohleNZHSRuA,19728
|
67
67
|
tequila/simulators/simulator_qulacs_gpu.py,sha256=J-QB4jWeZL176G7UFtPkCEReGJXA0mY4iDavfUF07Oo,659
|
@@ -69,7 +69,7 @@ tequila/simulators/simulator_symbolic.py,sha256=H5E9OwFdBYV1lovNPMK3a8cyU8m_EIHm
|
|
69
69
|
tequila/tools/__init__.py,sha256=mJChgkme6v6Ohj2s3tJ96Mq4U0kmVmc6d8Y6_1pEZMg,72
|
70
70
|
tequila/tools/convenience.py,sha256=9WYQJvx5i2QwQG8c7lssYTUv5hzW8h16JTr1GHxYf18,1291
|
71
71
|
tequila/tools/qng.py,sha256=p19A1rcKo06DAyBVUCQzNhwIGni6eAT6IGPnEPhKa4Y,21326
|
72
|
-
tequila/tools/random_generators.py,sha256=
|
72
|
+
tequila/tools/random_generators.py,sha256=UwkDMmNxxSPgaH1LNBswZUiHnLDd8arI3F5QshfBtBY,3417
|
73
73
|
tequila/utils/__init__.py,sha256=nlulDMHcq-XyBZf3NPx2bn_tcixi2mvhRc6MhU9TBWI,317
|
74
74
|
tequila/utils/bitstrings.py,sha256=b2qaicAuDvzb9guTCZvQ1XCgN3dHaJuQ1nlubDgatD4,5689
|
75
75
|
tequila/utils/exceptions.py,sha256=QK7AcDO2-7Itr8Aw6rLP_WtSkH6rfT8PHWcvNM6sQnc,1188
|
@@ -78,8 +78,8 @@ tequila/utils/keymap.py,sha256=RgQzeHEfRVee0-uoH-QsLYsGsXyMhEp3n33KCH-EV2k,3735
|
|
78
78
|
tequila/utils/misc.py,sha256=e62ASkFReaLJQXnBXzyYukzXZnXNoURsM1luoMeIXiE,919
|
79
79
|
tequila/wavefunction/__init__.py,sha256=q4DVL0lGFg03PogRMYA6S8MQqqmLYQiU9VNOF-YQxfQ,50
|
80
80
|
tequila/wavefunction/qubit_wavefunction.py,sha256=16Y9vRj6Yc6sBAKRUHVXJG4lJLDjWyN1b5fugf2LAmI,11881
|
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_basic-1.9.6.dist-info/LICENSE,sha256=oG1FtUav5_xrym9ByiG5emJDQRcbnAfTB08fRV9TCiE,1114
|
82
|
+
tequila_basic-1.9.6.dist-info/METADATA,sha256=vtmnWlAqZZdQ0Rylr2_fgVF66QaUZOsBY9uOZGYHM_w,19409
|
83
|
+
tequila_basic-1.9.6.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
|
84
|
+
tequila_basic-1.9.6.dist-info/top_level.txt,sha256=VBH0gl6mDMbcLHKlO0yEAqtcq08DqBHz4gRJ9jafl5w,8
|
85
|
+
tequila_basic-1.9.6.dist-info/RECORD,,
|
File without changes
|
File without changes
|