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
07e3eae0
Commit
07e3eae0
authored
Feb 22, 2021
by
rusty1s
Browse files
new release version
parent
1a3427b8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
CMakeLists.txt
CMakeLists.txt
+1
-1
setup.py
setup.py
+1
-1
torch_spline_conv/__init__.py
torch_spline_conv/__init__.py
+1
-1
No files found.
CMakeLists.txt
View file @
07e3eae0
cmake_minimum_required
(
VERSION 3.0
)
cmake_minimum_required
(
VERSION 3.0
)
project
(
torchsplineconv
)
project
(
torchsplineconv
)
set
(
CMAKE_CXX_STANDARD 14
)
set
(
CMAKE_CXX_STANDARD 14
)
set
(
TORCHSPLINECONV_VERSION 1.
5.4
)
set
(
TORCHSPLINECONV_VERSION 1.
2.1
)
option
(
WITH_CUDA
"Enable CUDA support"
OFF
)
option
(
WITH_CUDA
"Enable CUDA support"
OFF
)
...
...
setup.py
View file @
07e3eae0
...
@@ -69,7 +69,7 @@ tests_require = ['pytest', 'pytest-cov']
...
@@ -69,7 +69,7 @@ tests_require = ['pytest', 'pytest-cov']
setup
(
setup
(
name
=
'torch_spline_conv'
,
name
=
'torch_spline_conv'
,
version
=
'1.2.
0
'
,
version
=
'1.2.
1
'
,
author
=
'Matthias Fey'
,
author
=
'Matthias Fey'
,
author_email
=
'matthias.fey@tu-dortmund.de'
,
author_email
=
'matthias.fey@tu-dortmund.de'
,
url
=
'https://github.com/rusty1s/pytorch_spline_conv'
,
url
=
'https://github.com/rusty1s/pytorch_spline_conv'
,
...
...
torch_spline_conv/__init__.py
View file @
07e3eae0
...
@@ -3,7 +3,7 @@ import os.path as osp
...
@@ -3,7 +3,7 @@ import os.path as osp
import
torch
import
torch
__version__
=
'1.2.
0
'
__version__
=
'1.2.
1
'
suffix
=
'cuda'
if
torch
.
cuda
.
is_available
()
else
'cpu'
suffix
=
'cuda'
if
torch
.
cuda
.
is_available
()
else
'cpu'
...
...
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