Skip to content

Commit e87a225

Browse files
committed
rename cuda files
1 parent 452097b commit e87a225

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

build.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
if torch.cuda.is_available():
1616
subprocess.call(['./build.sh', osp.dirname(torch.__file__)])
1717

18-
headers += ['torch_scatter/src/cuda.h']
19-
sources += ['torch_scatter/src/cuda.c']
18+
headers += ['torch_scatter/src/gpu.h']
19+
sources += ['torch_scatter/src/gpu.c']
2020
include_dirs += ['torch_scatter/kernel']
2121
define_macros += [('WITH_CUDA', None)]
2222
extra_objects += ['torch_scatter/build/kernel.so']

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from setuptools import setup, find_packages
44

5-
__version__ = '1.0.2'
5+
__version__ = '1.0.3'
66
url = 'https://github.com/rusty1s/pytorch_scatter'
77

88
install_requires = ['cffi']

torch_scatter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from .max import scatter_max
77
from .min import scatter_min
88

9-
__version__ = '1.0.2'
9+
__version__ = '1.0.3'
1010

1111
__all__ = [
1212
'scatter_add', 'scatter_sub', 'scatter_mul', 'scatter_div', 'scatter_mean',
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)