Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
rusty1s committed Feb 16, 2024
1 parent fbd23bb commit 1b195a0
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 6 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,19 @@
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).

## \[2.5.0\] - 2023-MM-DD
## \[2.6.0\] - 2024-MM-DD

### Added

### Changed

### Deprecated

### Fixed

### Removed

## \[2.5.0\] - 2024-02-16

### Added

Expand Down
2 changes: 1 addition & 1 deletion conda/pyg/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: pyg
version: 2.4.0
version: 2.5.0

source:
url: https://files.pythonhosted.org/packages/e6/6e/a596e2ddecc3b13a0d576495369a30309fb54c74fadf0bbca645bfbcaa2f/torch_geometric-2.4.0.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion conda/pytorch-geometric/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: pytorch-geometric
version: 2.4.0
version: 2.5.0

source:
url: https://files.pythonhosted.org/packages/e6/6e/a596e2ddecc3b13a0d576495369a30309fb54c74fadf0bbca645bfbcaa2f/torch_geometric-2.4.0.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion docs/source/tutorial/distributed_pyg.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Note that METIS requires undirected, homogeneous graphs as input.

By default, METIS tries to balance the number of nodes of each type in each partition while minimizing the number of edges between partitions.
This ensures that the resulting partitions provide maximal local access of neighbors, enabling samplers to perform local computations without the need for communication between different compute nodes.
Through this partitioning approach, every edge receives a distinct assignment, while "halo nodes" (1-hop neighbors that fall into a different partition) are replicated.
Through this partitioning approach, every node receives a distinct assignment, while "halo nodes" (1-hop neighbors that fall into a different partition) are replicated.
Halo nodes ensure that neighbor sampling for a single node in a single layer stays purely local.

.. figure:: ../_figures/dist_part.png
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend="flit_core.buildapi"

[project]
name="torch_geometric"
version="2.4.0"
version="2.5.0"
authors=[
{name="Matthias Fey", email="matthias@pyg.org"},
]
Expand Down
2 changes: 1 addition & 1 deletion torch_geometric/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
contrib = LazyLoader('contrib', globals(), 'torch_geometric.contrib')
graphgym = LazyLoader('graphgym', globals(), 'torch_geometric.graphgym')

__version__ = '2.4.0'
__version__ = '2.5.0'

__all__ = [
'EdgeIndex',
Expand Down

0 comments on commit 1b195a0

Please sign in to comment.