You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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]>
Copy file name to clipboardexpand all lines: quick_start.md
+19-6
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ The Heat conda build includes all dependencies including OpenMPI.
11
11
```shell
12
12
conda create --name heat_env
13
13
conda activate heat_env
14
-
conda -c conda-forge heat
14
+
conda install -c conda-forge heat
15
15
```
16
16
17
17
[Test](#test) your installation.
@@ -78,21 +78,34 @@ Local torch tensor on rank 1 : tensor([5, 6, 7, 8, 9], dtype=torch.int32)
78
78
79
79
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).
80
80
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.
82
82
83
83
```
84
-
conda env create -f heat_dev.yml
84
+
conda env create -f scripts/heat_dev.yml
85
85
conda activate heat_dev
86
86
```
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`.
87
88
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
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/):
89
102
90
103
```
91
104
cd $MY_REPO_DIR/heat/
92
105
pre-commit install
93
106
```
94
107
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).
96
109
97
110
Running all unit tests locally, e.g. on 3 processes:
98
111
@@ -125,6 +138,6 @@ Local torch tensor on rank 1 : tensor([5, 6, 7, 8, 9], dtype=torch.int32)
125
138
mpirun --tag-output -n 3 python -m unittest -vf
126
139
```
127
140
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.
0 commit comments