Skip to content

Commit efac08d

Browse files
committed
Merge branch 'master' of github.com:rusty1s/pytorch_scatter
2 parents 481e81f + 18bb5b1 commit efac08d

File tree

14 files changed

+58
-3
lines changed

14 files changed

+58
-3
lines changed

.coveragerc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ exclude_lines =
55
pragma: no cover
66
cuda
77
backward
8+
raise

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,14 @@ before_install:
1717
- export CXX="g++-4.9"
1818
install:
1919
- pip install numpy
20-
- pip install -q torch
20+
- pip install -q torch -f https://download.pytorch.org/whl/nightly/cpu/torch.html
2121
- pip install pycodestyle
2222
- pip install flake8
2323
- pip install codecov
2424
- pip install sphinx
2525
- pip install sphinx_rtd_theme
2626
script:
27+
- python -c "import torch; print(torch.__version__)"
2728
- pycodestyle .
2829
- flake8 .
2930
- python setup.py install

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The package consists of the following operations:
3535
* [**Scatter Min**](https://pytorch-scatter.readthedocs.io/en/latest/functions/min.html)
3636
* [**Scatter Max**](https://pytorch-scatter.readthedocs.io/en/latest/functions/max.html)
3737

38-
All included operations work on varying data types, are implemented both for CPU and GPU and include a backwards implementation.
38+
All included operations are broadcastable, work on varying data types, and are implemented both for CPU and GPU with corresponding backward implementations.
3939

4040
## Installation
4141

docs/source/functions/add.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@ Scatter Add
22
===========
33

44
.. automodule:: torch_scatter
5+
:noindex:
56

67
.. autofunction:: scatter_add

docs/source/functions/div.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@ Scatter Div
22
===========
33

44
.. automodule:: torch_scatter
5+
:noindex:
56

67
.. autofunction:: scatter_div

docs/source/functions/max.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@ Scatter Max
22
===========
33

44
.. automodule:: torch_scatter
5+
:noindex:
56

67
.. autofunction:: scatter_max

docs/source/functions/mean.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@ Scatter Mean
22
============
33

44
.. automodule:: torch_scatter
5+
:noindex:
56

67
.. autofunction:: scatter_mean

docs/source/functions/mul.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@ Scatter Mul
22
===========
33

44
.. automodule:: torch_scatter
5+
:noindex:
56

67
.. autofunction:: scatter_mul

docs/source/functions/std.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@ Scatter Std
22
===========
33

44
.. automodule:: torch_scatter
5+
:noindex:
56

67
.. autofunction:: scatter_std

docs/source/functions/sub.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@ Scatter Sub
22
===========
33

44
.. automodule:: torch_scatter
5+
:noindex:
56

67
.. autofunction:: scatter_sub

0 commit comments

Comments
 (0)