Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,6 @@ Thumbs.db
.coverage
htmlcov/

# Local development documentation
/CONTEXT.md
/docs/
53 changes: 0 additions & 53 deletions CONTEXT.md

This file was deleted.

5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ The instructions in this section are for **building TorchMorph from this reposit

1. Create and activate a fresh conda environment:
```bash
conda create -n torchmorph python=3.11 -y
conda create -n torchmorph python=3.12 -y
conda activate torchmorph
```

Expand All @@ -41,7 +41,8 @@ The instructions in this section are for **building TorchMorph from this reposit

3. Ensure you have a compatible `nvcc` compiler.
```bash
conda install -c nvidia cuda-nvcc=12.4 -y
conda install -c nvidia -c conda-forge \
cuda-version=12.4 cuda-cudart=12.4 cuda-cudart-dev=12.4 cuda-nvcc=12.4 cuda-cccl=12.4
```

4. Install TorchMorph's dependencies and build the extension:
Expand Down
Loading
Loading