Skip to content

Commit 6f5fa1f

Browse files
bhagemeiermrfh92pre-commit-ci[bot]ClaudiaComitomtar
authored
Proper setup of PyTorch versions in Conda based environments (#1492)
* Limit permissible PyTorch versions in Conda Conda would typically install the latest version of any dependency, but we don't support the latest version of PyTorch yet. Keep version aligned with settings in setup.py for now. * Pull PyTorch from pytorch Conda channel The desired PyTorch version is not available from default channels, such that we need to set the pytorch channel explicitly. * CUDA environments for Conda and Python update Use Python 3.11, which is the latest compatible with Heat and Pytorch. Introduce CUDA 11.8 and 12.1 environments for Conda. * Update quick_start.md * Update quick_start.md * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Update quick_start.md --------- Co-authored-by: Fabian Hoppe <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Claudia Comito <[email protected]> Co-authored-by: Michael Tarnawa <[email protected]>
1 parent 9c68f81 commit 6f5fa1f

File tree

4 files changed

+59
-8
lines changed

4 files changed

+59
-8
lines changed

quick_start.md

+19-6
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The Heat conda build includes all dependencies including OpenMPI.
1111
```shell
1212
conda create --name heat_env
1313
conda activate heat_env
14-
conda -c conda-forge heat
14+
conda install -c conda-forge heat
1515
```
1616

1717
[Test](#test) your installation.
@@ -78,21 +78,34 @@ Local torch tensor on rank 1 : tensor([5, 6, 7, 8, 9], dtype=torch.int32)
7878

7979
3. [Fork](https://docs.github.com/en/get-started/quickstart/contributing-to-projects) or, if you have write access, clone the [Heat repository](https://github.com/helmholtz-analytics/heat).
8080

81-
4. Create a virtual environment `heat_dev` with all dependencies via [heat_dev.yml](https://github.com/helmholtz-analytics/heat/blob/main/scripts/heat_dev.yml). Note that `heat_dev.yml` does not install Heat.
81+
4. **Setting up a dev-environment with CONDA:** Create a virtual environment `heat_dev` with all dependencies via [scripts/heat_dev.yml](https://github.com/helmholtz-analytics/heat/blob/main/scripts/heat_dev.yml). Note that `scripts/heat_dev.yml` does not install Heat.
8282

8383
```
84-
conda env create -f heat_dev.yml
84+
conda env create -f scripts/heat_dev.yml
8585
conda activate heat_dev
8686
```
87+
Note that in case you want to use a GPU while developing on your local machine, you need to set up a CUDA environment by using `scripts/heat_dev_cuda11.yml`for CUDA 11 or `scripts/heat_dev_cuda12.yml`for CUDA 12, respectively, instead of `scripts/heat_dev.yml`.
8788
88-
5. In the `/heat` directory of your local repo, install the [pre-commit hooks]( https://pre-commit.com/):
89+
**Setting up a dev-environment with PIP:** Create a virtual environment `heatenv` with `python -m venv <path_to_store_venvs>/heatenv`, and activate it by `source <path_to_store_venvs>/heatenv/bin/activate`. Then clone the Heat-repo from GitHub by
90+
91+
```
92+
git clone https://github.com/helmholtz-analytics/heat.git
93+
```
94+
95+
go to the Heat-folder (`cd heat`), and install (in editable fashion "`-e`") by
96+
97+
```
98+
pip install -e '.[hdf5, netcdf]'
99+
```
100+
101+
6. In the `/heat` directory of your local repo, install the [pre-commit hooks]( https://pre-commit.com/):
89102
90103
```
91104
cd $MY_REPO_DIR/heat/
92105
pre-commit install
93106
```
94107
95-
6. Write and run (locally) [unit tests](https://docs.python.org/3/library/unittest.html) for any change you introduce. Here's a sample of our [test modules](https://github.com/helmholtz-analytics/heat/tree/main/heat/core/tests).
108+
7. Write and run (locally) [unit tests](https://docs.python.org/3/library/unittest.html) for any change you introduce. Here's a sample of our [test modules](https://github.com/helmholtz-analytics/heat/tree/main/heat/core/tests).
96109
97110
Running all unit tests locally, e.g. on 3 processes:
98111
@@ -125,6 +138,6 @@ Local torch tensor on rank 1 : tensor([5, 6, 7, 8, 9], dtype=torch.int32)
125138
mpirun --tag-output -n 3 python -m unittest -vf
126139
```
127140
128-
7. After [making and pushing](https://docs.github.com/en/get-started/quickstart/contributing-to-projects#making-and-pushing-changes) your changes, go ahead and [create a Pull Request](https://docs.github.com/en/get-started/quickstart/contributing-to-projects#making-a-pull-request). Make sure you go through the Due Diligence checklist (part of our PR template). Consider [allowing us to edit your branch](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/allowing-changes-to-a-pull-request-branch-created-from-a-fork#enabling-repository-maintainer-permissions-on-existing-pull-requests) for a smoother review process.
141+
8. After [making and pushing](https://docs.github.com/en/get-started/quickstart/contributing-to-projects#making-and-pushing-changes) your changes, go ahead and [create a Pull Request](https://docs.github.com/en/get-started/quickstart/contributing-to-projects#making-a-pull-request). Make sure you go through the Due Diligence checklist (part of our PR template). Consider [allowing us to edit your branch](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/allowing-changes-to-a-pull-request-branch-created-from-a-fork#enabling-repository-maintainer-permissions-on-existing-pull-requests) for a smoother review process.
129142
130143
## Thank you so much for your time!

scripts/heat_dev.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ channels:
33
- conda-forge
44
- defaults
55
dependencies:
6-
- python=3.10
6+
- python=3.11
77
- openmpi
88
- mpi4py
99
- h5py[version='>=2.9',build=mpi*]
1010
- netcdf4
11-
- pytorch
11+
- pytorch>=1.11.0,<2.2.3[channel=pytorch]
1212
- torchvision
1313
- scipy
1414
- pre-commit

scripts/heat_dev_cuda11.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: heat_dev_cuda11
2+
channels:
3+
- conda-forge
4+
- defaults
5+
- pytorch
6+
- nvidia
7+
dependencies:
8+
- python=3.11
9+
- openmpi
10+
- mpi4py
11+
- h5py[version='>=2.9',build=mpi*]
12+
- netcdf4
13+
- pytorch=2.2.2
14+
- pytorch-cuda=11.8
15+
- torchvision
16+
- scipy
17+
- pre-commit
18+
- black
19+
- flake8

scripts/heat_dev_cuda12.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: heat_dev_cuda12
2+
channels:
3+
- conda-forge
4+
- defaults
5+
- pytorch
6+
- nvidia
7+
dependencies:
8+
- python=3.11
9+
- openmpi
10+
- mpi4py
11+
- h5py[version='>=2.9',build=mpi*]
12+
- netcdf4
13+
- pytorch=2.2.2
14+
- pytorch-cuda=12.1
15+
- torchvision
16+
- scipy
17+
- pre-commit
18+
- black
19+
- flake8

0 commit comments

Comments
 (0)