Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
one
spconv
Commits
027b9655
Commit
027b9655
authored
Nov 28, 2021
by
yan.yan
Browse files
v2.1.15: fix missing Hash in setup.py in 2.1.14
parent
076bdb05
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
3 deletions
+8
-3
CHANGELOG.md
CHANGELOG.md
+4
-0
setup.py
setup.py
+3
-2
version.txt
version.txt
+1
-1
No files found.
CHANGELOG.md
View file @
027b9655
# Changelog
## [2.1.15] - 2021-11-28
### Fixed
-
Fix missing pccm.Class in setup.py
## [2.1.14] - 2021-11-28
### Added
-
Add hash table
...
...
setup.py
View file @
027b9655
...
...
@@ -157,6 +157,7 @@ if disable_jit is not None and disable_jit == "1":
from
cumm.constants
import
CUMM_CPU_ONLY_BUILD
from
spconv.csrc.sparse.all
import
SpconvOps
from
spconv.csrc.utils
import
BoxOps
from
spconv.csrc.hash.core
import
HashTable
cu
=
GemmMainUnitTest
(
SHUFFLE_SIMT_PARAMS
+
SHUFFLE_VOLTA_PARAMS
+
SHUFFLE_TURING_PARAMS
)
convcu
=
ConvMainUnitTest
(
IMPLGEMM_SIMT_PARAMS
+
IMPLGEMM_VOLTA_PARAMS
+
IMPLGEMM_TURING_PARAMS
)
...
...
@@ -170,9 +171,9 @@ if disable_jit is not None and disable_jit == "1":
std
=
"c++14"
else
:
std
=
"c++17"
cus
=
[
cu
,
convcu
,
SpconvOps
(),
BoxOps
()]
cus
=
[
cu
,
convcu
,
SpconvOps
(),
BoxOps
()
,
HashTable
()
]
if
CUMM_CPU_ONLY_BUILD
:
cus
=
[
SpconvOps
(),
BoxOps
()]
cus
=
[
SpconvOps
(),
BoxOps
()
,
HashTable
()
]
ext_modules
:
List
[
Extension
]
=
[
PCCMExtension
(
cus
,
"spconv/core_cc"
,
...
...
version.txt
View file @
027b9655
2.1.14
\ No newline at end of file
2.1.15
\ No newline at end of file
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