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-sparse
Commits
587d1d02
Unverified
Commit
587d1d02
authored
Jun 30, 2022
by
Matthias Fey
Committed by
GitHub
Jun 30, 2022
Browse files
Version up (#246)
* PyTorch 1.12 support * version up
parent
897c0a8d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
6 deletions
+10
-6
CMakeLists.txt
CMakeLists.txt
+1
-1
conda/pytorch-sparse/meta.yaml
conda/pytorch-sparse/meta.yaml
+1
-1
setup.py
setup.py
+7
-3
torch_sparse/__init__.py
torch_sparse/__init__.py
+1
-1
No files found.
CMakeLists.txt
View file @
587d1d02
cmake_minimum_required
(
VERSION 3.0
)
project
(
torchsparse
)
set
(
CMAKE_CXX_STANDARD 14
)
set
(
TORCHSPARSE_VERSION 0.
7.0
)
set
(
TORCHSPARSE_VERSION 0.
6.14
)
option
(
WITH_CUDA
"Enable CUDA support"
OFF
)
option
(
WITH_PYTHON
"Link to Python when building"
ON
)
...
...
conda/pytorch-sparse/meta.yaml
View file @
587d1d02
package
:
name
:
pytorch-sparse
version
:
0.
7.0
version
:
0.
6.14
source
:
path
:
../..
...
...
setup.py
View file @
587d1d02
...
...
@@ -8,10 +8,14 @@ from itertools import product
import
torch
from
setuptools
import
find_packages
,
setup
from
torch.__config__
import
parallel_info
from
torch.utils.cpp_extension
import
(
CUDA_HOME
,
BuildExtension
,
CppExtension
,
CUDAExtension
)
from
torch.utils.cpp_extension
import
(
CUDA_HOME
,
BuildExtension
,
CppExtension
,
CUDAExtension
,
)
__version__
=
'0.
7.0
'
__version__
=
'0.
6.14
'
URL
=
'https://github.com/rusty1s/pytorch_sparse'
WITH_CUDA
=
torch
.
cuda
.
is_available
()
and
CUDA_HOME
is
not
None
...
...
torch_sparse/__init__.py
View file @
587d1d02
...
...
@@ -3,7 +3,7 @@ import os.path as osp
import
torch
__version__
=
'0.
7.0
'
__version__
=
'0.
6.14
'
for
library
in
[
'_version'
,
'_convert'
,
'_diag'
,
'_spmm'
,
'_spspmm'
,
'_metis'
,
'_rw'
,
...
...
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