Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 5 additions & 1 deletion .github/workflows/building.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,13 @@ jobs:
matrix:
os: [ubuntu-20.04, macos-14, windows-2019]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
torch-version: [2.5.0] # [2.3.0, 2.4.0, 2.5.0]
torch-version: [2.6.0] # [2.3.0, 2.4.0, 2.5.0, 2.6.0]
cuda-version: ['cpu', 'cu118', 'cu121', 'cu124']
exclude:
- torch-version: 2.6.0
python-version: '3.8'
- torch-version: 2.6.0
cuda-version: 'cu121'
- torch-version: 2.5.0
python-version: '3.8'
- torch-version: 2.3.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: [3.9]
torch-version: [2.4.0, 2.5.0]
torch-version: [2.4.0, 2.5.0, 2.6.0]

steps:
- uses: actions/checkout@v2
Expand Down
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,22 @@ conda install pytorch-scatter -c pyg

We alternatively provide pip wheels for all major OS/PyTorch/CUDA combinations, see [here](https://data.pyg.org/whl).

#### PyTorch 2.6

To install the binaries for PyTorch 2.6.0, simply run

```
pip install torch-scatter -f https://data.pyg.org/whl/torch-2.6.0+${CUDA}.html
```

where `${CUDA}` should be replaced by either `cpu`, `cu118` or `cu124` depending on your PyTorch installation.

| | `cpu` | `cu118` | `cu124` |
|-------------|-------|---------|---------|
| **Linux** | ✅ | ✅ | ✅ |
| **Windows** | ✅ | ✅ | ✅ |
| **macOS** | ✅ | | |

#### PyTorch 2.5

To install the binaries for PyTorch 2.5.0, simply run
Expand Down