pyg-nightly 2.7.0.dev20250331__py3-none-any.whl → 2.7.0.dev20250402__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pyg_nightly-2.7.0.dev20250331.dist-info → pyg_nightly-2.7.0.dev20250402.dist-info}/METADATA +1 -1
- {pyg_nightly-2.7.0.dev20250331.dist-info → pyg_nightly-2.7.0.dev20250402.dist-info}/RECORD +6 -6
- torch_geometric/__init__.py +1 -1
- torch_geometric/data/graph_store.py +2 -1
- {pyg_nightly-2.7.0.dev20250331.dist-info → pyg_nightly-2.7.0.dev20250402.dist-info}/WHEEL +0 -0
- {pyg_nightly-2.7.0.dev20250331.dist-info → pyg_nightly-2.7.0.dev20250402.dist-info}/licenses/LICENSE +0 -0
{pyg_nightly-2.7.0.dev20250331.dist-info → pyg_nightly-2.7.0.dev20250402.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: pyg-nightly
|
3
|
-
Version: 2.7.0.
|
3
|
+
Version: 2.7.0.dev20250402
|
4
4
|
Summary: Graph Neural Network Library for PyTorch
|
5
5
|
Keywords: deep-learning,pytorch,geometric-deep-learning,graph-neural-networks,graph-convolutional-networks
|
6
6
|
Author-email: Matthias Fey <matthias@pyg.org>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
torch_geometric/__init__.py,sha256=
|
1
|
+
torch_geometric/__init__.py,sha256=SIdQxn7AUZlZfz4kgo67G4SF0TbyZlrL8yWmaSSzU5g,1978
|
2
2
|
torch_geometric/_compile.py,sha256=f-WQeH4VLi5Hn9lrgztFUCSrN_FImjhQa6BxFzcYC38,1338
|
3
3
|
torch_geometric/_onnx.py,sha256=V9ffrIKSqhDw6xUZ12lkuSfNs48cQp2EeJ6Z19GfnVw,349
|
4
4
|
torch_geometric/backend.py,sha256=lVaf7aLoVaB3M-UcByUJ1G4T4FOK6LXAg0CF4W3E8jo,1575
|
@@ -40,7 +40,7 @@ torch_geometric/data/dataset.py,sha256=rNNAYeJDOQ-a6dqjWg4YKsAz0SvkMZuQK-55sRnmW
|
|
40
40
|
torch_geometric/data/download.py,sha256=kcesTu6jlgmCeePpOxDQOnVhxB_GuZ9iu9ds72KEORc,1889
|
41
41
|
torch_geometric/data/extract.py,sha256=X_f0JEo67DF9hOpIlq3QPWXA9RF8uoVFi195UjstzDc,2324
|
42
42
|
torch_geometric/data/feature_store.py,sha256=ma65GAHHEoYiZqHs_CkMGAYxeepGc1Bp0TMXmioIfCs,20044
|
43
|
-
torch_geometric/data/graph_store.py,sha256=
|
43
|
+
torch_geometric/data/graph_store.py,sha256=EtIgsyY7RdBHRTCn34VypEBOG8cg8WzsNT_kTFKxJR4,13900
|
44
44
|
torch_geometric/data/hetero_data.py,sha256=q0L3bENyEvo_BGLPwZPVzh730Aak6sQ7yXoawPgM72E,47982
|
45
45
|
torch_geometric/data/hypergraph_data.py,sha256=33hsXW25Yz4Ju8mKajYinZOrkqrUi1SqThG7MlOOYNM,8294
|
46
46
|
torch_geometric/data/in_memory_dataset.py,sha256=F35hU9Dw3qiJUL5E1CCAfq-1xrlUMstXBmQVEQdtJ1I,13403
|
@@ -633,7 +633,7 @@ torch_geometric/utils/undirected.py,sha256=H_nfpI0_WluOG6VfjPyldvcjL4w5USAKWu2x5
|
|
633
633
|
torch_geometric/visualization/__init__.py,sha256=PyR_4K5SafsJrBr6qWrkjKr6GBL1b7FtZybyXCDEVwY,154
|
634
634
|
torch_geometric/visualization/graph.py,sha256=ZuLPL92yGRi7lxlqsUPwL_EVVXF7P2kMcveTtW79vpA,4784
|
635
635
|
torch_geometric/visualization/influence.py,sha256=CWMvuNA_Nf1sfbJmQgn58yS4OFpeKXeZPe7kEuvkUBw,477
|
636
|
-
pyg_nightly-2.7.0.
|
637
|
-
pyg_nightly-2.7.0.
|
638
|
-
pyg_nightly-2.7.0.
|
639
|
-
pyg_nightly-2.7.0.
|
636
|
+
pyg_nightly-2.7.0.dev20250402.dist-info/licenses/LICENSE,sha256=ic-27cMJc1kWoMEYncz3Ya3Ur2Bi3bNLWib2DT763-o,1067
|
637
|
+
pyg_nightly-2.7.0.dev20250402.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
638
|
+
pyg_nightly-2.7.0.dev20250402.dist-info/METADATA,sha256=_husJhjcJw54xwTl9LWSaefFD-KH7m4E3NrKOUPZCOw,63021
|
639
|
+
pyg_nightly-2.7.0.dev20250402.dist-info/RECORD,,
|
torch_geometric/__init__.py
CHANGED
@@ -31,7 +31,7 @@ from .lazy_loader import LazyLoader
|
|
31
31
|
contrib = LazyLoader('contrib', globals(), 'torch_geometric.contrib')
|
32
32
|
graphgym = LazyLoader('graphgym', globals(), 'torch_geometric.graphgym')
|
33
33
|
|
34
|
-
__version__ = '2.7.0.
|
34
|
+
__version__ = '2.7.0.dev20250402'
|
35
35
|
|
36
36
|
__all__ = [
|
37
37
|
'Index',
|
@@ -261,7 +261,8 @@ class GraphStore(ABC):
|
|
261
261
|
col = ptr2index(col)
|
262
262
|
|
263
263
|
if attr.layout != EdgeLayout.CSR: # COO->CSR
|
264
|
-
num_rows = attr.size[0] if attr.size else int(
|
264
|
+
num_rows = attr.size[0] if attr.size is not None else int(
|
265
|
+
row.max()) + 1
|
265
266
|
row, perm = index_sort(row, max_value=num_rows)
|
266
267
|
col = col[perm]
|
267
268
|
row = index2ptr(row, num_rows)
|
File without changes
|
{pyg_nightly-2.7.0.dev20250331.dist-info → pyg_nightly-2.7.0.dev20250402.dist-info}/licenses/LICENSE
RENAMED
File without changes
|