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-scatter
Commits
5ce60ecc
Commit
5ce60ecc
authored
Oct 22, 2021
by
rusty1s
Browse files
version up
parent
c72f36c0
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
CMakeLists.txt
CMakeLists.txt
+1
-1
conda/pytorch-scatter/meta.yaml
conda/pytorch-scatter/meta.yaml
+1
-1
setup.py
setup.py
+1
-1
torch_scatter/__init__.py
torch_scatter/__init__.py
+1
-1
No files found.
CMakeLists.txt
View file @
5ce60ecc
cmake_minimum_required
(
VERSION 3.0
)
cmake_minimum_required
(
VERSION 3.0
)
project
(
torchscatter
)
project
(
torchscatter
)
set
(
CMAKE_CXX_STANDARD 14
)
set
(
CMAKE_CXX_STANDARD 14
)
set
(
TORCHSCATTER_VERSION 2.0.
8
)
set
(
TORCHSCATTER_VERSION 2.0.
9
)
option
(
WITH_CUDA
"Enable CUDA support"
OFF
)
option
(
WITH_CUDA
"Enable CUDA support"
OFF
)
...
...
conda/pytorch-scatter/meta.yaml
View file @
5ce60ecc
package
:
package
:
name
:
pytorch-scatter
name
:
pytorch-scatter
version
:
2.0.
8
version
:
2.0.
9
source
:
source
:
path
:
../..
path
:
../..
...
...
setup.py
View file @
5ce60ecc
...
@@ -82,7 +82,7 @@ tests_require = ['pytest', 'pytest-runner', 'pytest-cov']
...
@@ -82,7 +82,7 @@ tests_require = ['pytest', 'pytest-runner', 'pytest-cov']
setup
(
setup
(
name
=
'torch_scatter'
,
name
=
'torch_scatter'
,
version
=
'2.0.
8
'
,
version
=
'2.0.
9
'
,
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_scatter'
,
url
=
'https://github.com/rusty1s/pytorch_scatter'
,
...
...
torch_scatter/__init__.py
View file @
5ce60ecc
...
@@ -4,7 +4,7 @@ import os.path as osp
...
@@ -4,7 +4,7 @@ import os.path as osp
import
torch
import
torch
__version__
=
'2.0.
8
'
__version__
=
'2.0.
9
'
for
library
in
[
'_version'
,
'_scatter'
,
'_segment_csr'
,
'_segment_coo'
]:
for
library
in
[
'_version'
,
'_scatter'
,
'_segment_csr'
,
'_segment_coo'
]:
cuda_spec
=
importlib
.
machinery
.
PathFinder
().
find_spec
(
cuda_spec
=
importlib
.
machinery
.
PathFinder
().
find_spec
(
...
...
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