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-cluster
Commits
6b18f2d1
Commit
6b18f2d1
authored
Apr 30, 2018
by
rusty1s
Browse files
version up
parent
2d253c11
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
build.sh
build.sh
+1
-1
setup.py
setup.py
+1
-1
torch_cluster/__init__.py
torch_cluster/__init__.py
+1
-1
No files found.
build.sh
View file @
6b18f2d1
...
...
@@ -7,4 +7,4 @@ SRC_DIR=aten/THC
BUILD_DIR
=
torch_cluster/_ext
mkdir
-p
$BUILD_DIR
$(
which nvcc
)
"-I
$TORCH
/lib/include"
"-I
$TORCH
/lib/include/TH"
"-I
$TORCH
/lib/include/THC"
"-I
$SRC_DIR
"
-c
"
$SRC_DIR
/THC.cu"
-o
"
$BUILD_DIR
/THC.o"
--compiler-options
'-fPIC'
-std
=
c++11
$(
which nvcc
)
"-I
$TORCH
/lib/include"
"-I
$TORCH
/lib/include/TH"
"-I
$TORCH
/lib/include/THC"
"-I
$SRC_DIR
"
-c
"
$SRC_DIR
/THC.cu"
-o
"
$BUILD_DIR
/THC.
s
o"
--compiler-options
'-fPIC'
-std
=
c++11
setup.py
View file @
6b18f2d1
...
...
@@ -2,7 +2,7 @@ from os import path as osp
from
setuptools
import
setup
,
find_packages
__version__
=
'1.1.
0
'
__version__
=
'1.1.
1
'
url
=
'https://github.com/rusty1s/pytorch_cluster'
install_requires
=
[
'cffi'
]
...
...
torch_cluster/__init__.py
View file @
6b18f2d1
from
.graclus
import
graclus_cluster
from
.grid
import
grid_cluster
__version__
=
'1.1.
0
'
__version__
=
'1.1.
1
'
__all__
=
[
'graclus_cluster'
,
'grid_cluster'
,
'__version__'
]
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