Skip to content

Commit 85f3239

Browse files
authored
Merge pull request #8 from Ericgig/misc.prep_release
Prepare for release
2 parents c95fe8e + 14b2454 commit 85f3239

2 files changed

Lines changed: 19 additions & 7 deletions

File tree

README.md

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,27 @@ This backend is specifically designed for simulating **large, composite quantum
66

77
## Installation
88

9-
qutip-cuquantum is not yet available on pypi.
10-
Installation must be done from source:
9+
qutip-cuquantum is available on pypi.
1110

1211
```
13-
pip install git+https://github.com/qutip/qutip.git
14-
pip install git+https://github.com/qutip/qutip-cuquantum.git
12+
pip install -U qutip>=5.2.1
13+
pip install qutip-cuquantum
1514
```
1615

17-
It require cuquantum to be installed at runtime, see [nvidia's documentation](https://docs.nvidia.com/cuda/cuquantum/latest/getting-started/index.html#installing-cuquantum) for installation instruction.
16+
17+
It require cuquantum to be installed at runtime.
18+
If you have cuda already installed, you can install dependencies with:
19+
20+
```
21+
pip install qutip-cuquantum[cuda11]
22+
```
23+
or
24+
```
25+
pip install qutip-cuquantum[cuda12]
26+
```
27+
28+
If it does not work, you may need to install cuQuantum yourself,
29+
see [nvidia's documentation](https://docs.nvidia.com/cuda/cuquantum/latest/getting-started/index.html#installing-cuquantum) for installation instruction.
1830

1931
## Usage
2032

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ requires = [
44
"packaging",
55
"wheel",
66
"Cython",
7-
"qutip@git+https://github.com/qutip/qutip.git", # TODO: 5.2.1 we released
7+
"qutip>=5.2.1",
88
"numpy",
99
]
1010
build-backend = "setuptools.build_meta"
@@ -29,7 +29,7 @@ classifiers = [
2929
"Operating System :: Unix",
3030
]
3131
dependencies = [
32-
"qutip @ git+https://github.com/qutip/qutip.git", # Update next release
32+
"qutip>=5.2.1",
3333
]
3434

3535
# URLs for your project

0 commit comments

Comments
 (0)