tequila-basic 1.9.7__py3-none-any.whl → 1.9.9__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 +20 -15
- tequila/hamiltonian/paulis.py +4 -3
- tequila/objective/objective.py +5 -2
- tequila/quantumchemistry/chemistry_tools.py +8 -1
- tequila/quantumchemistry/encodings.py +2 -2
- tequila/quantumchemistry/orbital_optimizer.py +10 -2
- tequila/simulators/simulator_api.py +35 -9
- tequila/simulators/simulator_base.py +58 -28
- 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 +88 -53
- tequila/simulators/simulator_qiskit_gpu.py +9 -0
- tequila/simulators/simulator_qlm.py +3 -3
- tequila/simulators/simulator_qulacs.py +37 -28
- tequila/simulators/simulator_qulacs_gpu.py +6 -4
- tequila/simulators/simulator_spex.py +429 -0
- tequila/simulators/simulator_symbolic.py +15 -23
- tequila/simulators/test_spex_simulator.py +211 -0
- tequila/utils/bitstrings.py +14 -3
- tequila/version.py +1 -1
- tequila/wavefunction/qubit_wavefunction.py +340 -237
- {tequila_basic-1.9.7.dist-info → tequila_basic-1.9.9.dist-info}/METADATA +13 -9
- {tequila_basic-1.9.7.dist-info → tequila_basic-1.9.9.dist-info}/RECORD +28 -25
- {tequila_basic-1.9.7.dist-info → tequila_basic-1.9.9.dist-info}/WHEEL +1 -1
- {tequila_basic-1.9.7.dist-info → tequila_basic-1.9.9.dist-info/licenses}/LICENSE +0 -0
- {tequila_basic-1.9.7.dist-info → tequila_basic-1.9.9.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: tequila-basic
|
3
|
-
Version: 1.9.
|
3
|
+
Version: 1.9.9
|
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
|
@@ -15,6 +15,15 @@ Requires-Dist: setuptools
|
|
15
15
|
Requires-Dist: pytest
|
16
16
|
Requires-Dist: openfermion~=1.0
|
17
17
|
Requires-Dist: dataclasses; python_version < "3.7"
|
18
|
+
Dynamic: author
|
19
|
+
Dynamic: author-email
|
20
|
+
Dynamic: description
|
21
|
+
Dynamic: description-content-type
|
22
|
+
Dynamic: home-page
|
23
|
+
Dynamic: license-file
|
24
|
+
Dynamic: provides-extra
|
25
|
+
Dynamic: requires-dist
|
26
|
+
Dynamic: summary
|
18
27
|
|
19
28
|
[](LICENCE) [](https://zenodo.org/badge/latestdoi/259718912) [](https://badge.fury.io/py/tequila-basic) 
|
20
29
|
|
@@ -27,7 +36,7 @@ Tequila can execute the underlying quantum expectation values on state of the ar
|
|
27
36
|
# Getting Started
|
28
37
|
|
29
38
|
Get started with our collection of
|
30
|
-
- *[Tutorials](https://
|
39
|
+
- *[Tutorials](https://tequilahub.github.io/tequila-tutorials/)*
|
31
40
|
|
32
41
|
Further sources:
|
33
42
|
- [overview article](https://arxiv.org/abs/2011.03057)
|
@@ -360,12 +369,7 @@ You can avoid it by downgrading cirq and openfermion
|
|
360
369
|
```bash
|
361
370
|
pip install --upgrade "openfermion<=1.0.0"
|
362
371
|
pip install --upgrade "cirq<=0.9.1"
|
363
|
-
```
|
364
|
-
|
365
|
-
|
366
|
-
## Qiskit backend
|
367
|
-
Qiskit version 0.25 is not yet supported.
|
368
|
-
`pip install --upgrade qiskit<0.25` fixes potential issues. If not: Please let us know.
|
372
|
+
```
|
369
373
|
|
370
374
|
## Circuit drawing
|
371
375
|
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=YND9gLv_BQrt_NeUjOzGd6JYX47UlW1-UsIm5a71jLs,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=HASLPspbg6bxqQffm6dkJEUAKgKM9m5HCuwlB03ETnI,32007
|
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
|
@@ -39,7 +39,7 @@ tequila/ml/ml_api.py,sha256=T-HEojuiiO3TzeHN_mMX5GheywK2P4pJH7C_9D7HDaM,846
|
|
39
39
|
tequila/ml/utils_ml.py,sha256=uTif6aiNtyJZWTql0uXbxkkKzutAX2w7vbpA7xb9CIw,5533
|
40
40
|
tequila/objective/__init__.py,sha256=_BS3tVabs0zdon46nKpKmk3gI40z6KaWsjynIBMnPuc,231
|
41
41
|
tequila/objective/braket.py,sha256=10jEj7F3VWAj-fVrD4nhptrgRfrGvij84mVYcJWq4ZU,6019
|
42
|
-
tequila/objective/objective.py,sha256=
|
42
|
+
tequila/objective/objective.py,sha256=SunUH9KdPGV2pWQ2lXKrTJBbDIdNKYsqAknZABviVGg,31930
|
43
43
|
tequila/objective/qtensor.py,sha256=eSjFOEVW-kLoM8jn1RD2_E_kHVAm579Ji3_lMcJg7cE,7957
|
44
44
|
tequila/optimizers/__init__.py,sha256=1AhFyARYIfdyFGwnjOX0RDDa_kGrhiLJyjEbEm4NgZI,5086
|
45
45
|
tequila/optimizers/_containers.py,sha256=CXbWWQory_aADxlaMw4deIr03K_el-0E12GmpA0vX10,7161
|
@@ -48,38 +48,41 @@ tequila/optimizers/optimizer_gd.py,sha256=QF84K2XDn_-0w9htDlEpIaaGGtfudNamIvVCgx
|
|
48
48
|
tequila/optimizers/optimizer_gpyopt.py,sha256=-aVuutZUScyo6_4q4PyvMMa_OVd3L8ev9Ge2fXyWGV8,11280
|
49
49
|
tequila/optimizers/optimizer_scipy.py,sha256=zqRVQ-Whr74KCGP7Zg1jQkl9S3j9s1kS4oCrCtX30gY,18949
|
50
50
|
tequila/quantumchemistry/__init__.py,sha256=KP99PNJYVwBcfQGwL-MB9IBLSBJNRPf-5WN9NLqT-Rg,7424
|
51
|
-
tequila/quantumchemistry/chemistry_tools.py,sha256=
|
52
|
-
tequila/quantumchemistry/encodings.py,sha256=
|
51
|
+
tequila/quantumchemistry/chemistry_tools.py,sha256=PwqDciSHUNeu5J3kxo4koThGIMe2UxBcKE1Ymk912ME,47252
|
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=nxxQ1ILDnJy1EN0PAzltTcQjYYxCdpNXsb5mMFMx-PE,12732
|
55
55
|
tequila/quantumchemistry/psi4_interface.py,sha256=syNaDvlSmCsyB4f7idn3VGbMKyKo83vJHD5y5LpHwaM,29953
|
56
56
|
tequila/quantumchemistry/pyscf_interface.py,sha256=XgecUnKKg2rGiKqsYCJnDQ89ekkDkKuwc3qHULLMYck,6152
|
57
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=VCKdz4kxB5QX1c4ncHuB9y5SJxwMkkK25SVon3AuHJs,25672
|
60
|
+
tequila/simulators/simulator_base.py,sha256=gEbX7MgA09qGYXVA_j1p7xJ_izuiFvEKNB13PEpdMYI,35571
|
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=28l18iL3VI3kT0kUSqcizwJjnImyUf1VyERLVCGpWnk,25146
|
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=9Q1LlmUIcYcw9KGBfQ5j09sAJSinof6U7hCqWWLDkOk,20195
|
68
|
+
tequila/simulators/simulator_qulacs_gpu.py,sha256=3yVIACmQYQp_6ntvjvaGiYoHXbc1mKtb_Oa6Mo-2bSc,557
|
69
|
+
tequila/simulators/simulator_spex.py,sha256=DWmHDTnQdIExRwQnt-xOD62wNOuFucXC_tk9UtC22wU,16980
|
70
|
+
tequila/simulators/simulator_symbolic.py,sha256=nyS1lwk_dxcsTWKQ2YL4kvdl-kTdC0NoB-EmH6seP-M,5074
|
71
|
+
tequila/simulators/test_spex_simulator.py,sha256=Y9jWLxDDEPeTrnCZr017liqA0kJvLANk6wcuqkuXPB8,6480
|
69
72
|
tequila/tools/__init__.py,sha256=mJChgkme6v6Ohj2s3tJ96Mq4U0kmVmc6d8Y6_1pEZMg,72
|
70
73
|
tequila/tools/convenience.py,sha256=9WYQJvx5i2QwQG8c7lssYTUv5hzW8h16JTr1GHxYf18,1291
|
71
74
|
tequila/tools/qng.py,sha256=p19A1rcKo06DAyBVUCQzNhwIGni6eAT6IGPnEPhKa4Y,21326
|
72
75
|
tequila/tools/random_generators.py,sha256=UwkDMmNxxSPgaH1LNBswZUiHnLDd8arI3F5QshfBtBY,3417
|
73
76
|
tequila/utils/__init__.py,sha256=nlulDMHcq-XyBZf3NPx2bn_tcixi2mvhRc6MhU9TBWI,317
|
74
|
-
tequila/utils/bitstrings.py,sha256=
|
77
|
+
tequila/utils/bitstrings.py,sha256=e3kptMWj6Nv6h4QsX41H-b_S-t8OBHjqnxmRXOLhzFQ,6141
|
75
78
|
tequila/utils/exceptions.py,sha256=QK7AcDO2-7Itr8Aw6rLP_WtSkH6rfT8PHWcvNM6sQnc,1188
|
76
79
|
tequila/utils/joined_transformation.py,sha256=R2-aMTi6h7ZnjYUnX6cvFuPEQwgf49W0w33q6018qdc,2013
|
77
80
|
tequila/utils/keymap.py,sha256=RgQzeHEfRVee0-uoH-QsLYsGsXyMhEp3n33KCH-EV2k,3735
|
78
81
|
tequila/utils/misc.py,sha256=e62ASkFReaLJQXnBXzyYukzXZnXNoURsM1luoMeIXiE,919
|
79
82
|
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.
|
83
|
+
tequila/wavefunction/qubit_wavefunction.py,sha256=6-Cgg8I6zIi0tfYMrI_jqds1_2vRO5alRSA13tl944Y,17730
|
84
|
+
tequila_basic-1.9.9.dist-info/licenses/LICENSE,sha256=oG1FtUav5_xrym9ByiG5emJDQRcbnAfTB08fRV9TCiE,1114
|
85
|
+
tequila_basic-1.9.9.dist-info/METADATA,sha256=Pf7NfCw-bJlFp9Z5LQeA0sOOhyxHaUJh0iUMIRHMkRc,19368
|
86
|
+
tequila_basic-1.9.9.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
87
|
+
tequila_basic-1.9.9.dist-info/top_level.txt,sha256=VBH0gl6mDMbcLHKlO0yEAqtcq08DqBHz4gRJ9jafl5w,8
|
88
|
+
tequila_basic-1.9.9.dist-info/RECORD,,
|
File without changes
|
File without changes
|