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-spline-conv
Commits
1b96f53b
Commit
1b96f53b
authored
Apr 30, 2018
by
rusty1s
Browse files
version up
parent
7b119490
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
3 deletions
+4
-3
build.sh
build.sh
+2
-1
setup.py
setup.py
+1
-1
torch_spline_conv/__init__.py
torch_spline_conv/__init__.py
+1
-1
No files found.
build.sh
View file @
1b96f53b
...
@@ -7,4 +7,5 @@ SRC_DIR=aten/THC
...
@@ -7,4 +7,5 @@ SRC_DIR=aten/THC
BUILD_DIR
=
torch_spline_conv/_ext
BUILD_DIR
=
torch_spline_conv/_ext
mkdir
-p
"
$BUILD_DIR
"
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.so"
--compiler-options
'-fPIC'
-std
=
c++11
setup.py
View file @
1b96f53b
...
@@ -2,7 +2,7 @@ from os import path as osp
...
@@ -2,7 +2,7 @@ from os import path as osp
from
setuptools
import
setup
,
find_packages
from
setuptools
import
setup
,
find_packages
__version__
=
'1.0.
0
'
__version__
=
'1.0.
1
'
url
=
'https://github.com/rusty1s/pytorch_spline_conv'
url
=
'https://github.com/rusty1s/pytorch_spline_conv'
install_requires
=
[
'cffi'
]
install_requires
=
[
'cffi'
]
...
...
torch_spline_conv/__init__.py
View file @
1b96f53b
...
@@ -2,6 +2,6 @@ from .basis import SplineBasis
...
@@ -2,6 +2,6 @@ from .basis import SplineBasis
from
.weighting
import
SplineWeighting
from
.weighting
import
SplineWeighting
from
.conv
import
SplineConv
from
.conv
import
SplineConv
__version__
=
'1.0.
0
'
__version__
=
'1.0.
1
'
__all__
=
[
'SplineBasis'
,
'SplineWeighting'
,
'SplineConv'
,
'__version__'
]
__all__
=
[
'SplineBasis'
,
'SplineWeighting'
,
'SplineConv'
,
'__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