Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
torch-sparse
Commits
70249ef7
Commit
70249ef7
authored
Aug 05, 2018
by
rusty1s
Browse files
version update
parent
7da1c4c1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
setup.py
setup.py
+1
-1
torch_sparse/__init__.py
torch_sparse/__init__.py
+3
-0
No files found.
setup.py
View file @
70249ef7
...
@@ -2,7 +2,7 @@ import torch
...
@@ -2,7 +2,7 @@ import torch
from
setuptools
import
setup
,
find_packages
from
setuptools
import
setup
,
find_packages
from
torch.utils.cpp_extension
import
BuildExtension
,
CUDAExtension
from
torch.utils.cpp_extension
import
BuildExtension
,
CUDAExtension
__version__
=
'0.
1
.0'
__version__
=
'0.
2
.0'
url
=
'https://github.com/rusty1s/pytorch_sparse'
url
=
'https://github.com/rusty1s/pytorch_sparse'
install_requires
=
[
'numpy'
,
'scipy'
]
install_requires
=
[
'numpy'
,
'scipy'
]
...
...
torch_sparse/__init__.py
View file @
70249ef7
...
@@ -2,7 +2,10 @@ from .coalesce import coalesce
...
@@ -2,7 +2,10 @@ from .coalesce import coalesce
from
.transpose
import
transpose
from
.transpose
import
transpose
from
.matmul
import
spspmm
from
.matmul
import
spspmm
__version__
=
'0.2.0'
__all__
=
[
__all__
=
[
'__version__'
,
'coalesce'
,
'coalesce'
,
'transpose'
,
'transpose'
,
'spspmm'
,
'spspmm'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment