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
6e7b4caa
Commit
6e7b4caa
authored
Jul 28, 2021
by
rusty1s
Browse files
version up
parent
f15dde83
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
4 additions
and
8 deletions
+4
-8
.github/workflows/building.yml
.github/workflows/building.yml
+0
-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.
.github/workflows/building.yml
View file @
6e7b4caa
...
...
@@ -33,10 +33,6 @@ jobs:
with
:
python-version
:
${{ matrix.python-version }}
-
name
:
Update pip
run
:
|
pip install --upgrade pip
-
name
:
Install CUDA ${{ matrix.cuda-version }}
if
:
${{ matrix.cuda-version != 'cpu' }}
run
:
|
...
...
CMakeLists.txt
View file @
6e7b4caa
cmake_minimum_required
(
VERSION 3.0
)
project
(
torchscatter
)
set
(
CMAKE_CXX_STANDARD 14
)
set
(
TORCHSCATTER_VERSION 2.0.
7
)
set
(
TORCHSCATTER_VERSION 2.0.
8
)
option
(
WITH_CUDA
"Enable CUDA support"
OFF
)
...
...
conda/pytorch-scatter/meta.yaml
View file @
6e7b4caa
package
:
name
:
pytorch-scatter
version
:
2.0.
7
version
:
2.0.
8
source
:
path
:
../..
...
...
setup.py
View file @
6e7b4caa
...
...
@@ -82,7 +82,7 @@ tests_require = ['pytest', 'pytest-runner', 'pytest-cov']
setup
(
name
=
'torch_scatter'
,
version
=
'2.0.
7
'
,
version
=
'2.0.
8
'
,
author
=
'Matthias Fey'
,
author_email
=
'matthias.fey@tu-dortmund.de'
,
url
=
'https://github.com/rusty1s/pytorch_scatter'
,
...
...
torch_scatter/__init__.py
View file @
6e7b4caa
...
...
@@ -4,7 +4,7 @@ import os.path as osp
import
torch
__version__
=
'2.0.
7
'
__version__
=
'2.0.
8
'
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