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
4f425eac
Commit
4f425eac
authored
Nov 11, 2021
by
yan.yan
Browse files
v2.1.6: fix missing -fopenmp in linker
parent
46392889
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
4 deletions
+12
-4
.github/workflows/stale.yaml
.github/workflows/stale.yaml
+3
-3
CHANGELOG.md
CHANGELOG.md
+6
-0
spconv/csrc/sparse/cpu_core.py
spconv/csrc/sparse/cpu_core.py
+2
-0
version.txt
version.txt
+1
-1
No files found.
.github/workflows/stale.yaml
View file @
4f425eac
...
...
@@ -14,6 +14,6 @@ jobs:
steps
:
-
uses
:
actions/stale@v4
with
:
stale-issue-message
:
'
Mark
stale
issues
due
to
inactivity.
'
stale-pr-message
:
'
Mark
stale
PRs
due
to
inactivity.
'
operations-per-run
:
3
00
stale-issue-message
:
'
'
stale-pr-message
:
'
'
operations-per-run
:
5
00
CHANGELOG.md
View file @
4f425eac
# Changelog
## [2.1.6] - 2021-11-10
### Fixed
-
Fix missing -fopenmp in linker for CPU only
### Removed
-
remove stale comment sending in CI
## [2.1.5] - 2021-11-10
### Added
-
Add cuda profile tool
...
...
spconv/csrc/sparse/cpu_core.py
View file @
4f425eac
...
...
@@ -27,3 +27,5 @@ class OMPLib(pccm.Class):
else
:
self
.
build_meta
.
add_cflags
(
"g++"
,
"-fopenmp"
)
self
.
build_meta
.
add_cflags
(
"clang++"
,
"-fopenmp"
)
self
.
build_meta
.
add_ldflags
(
"g++"
,
"-fopenmp"
)
self
.
build_meta
.
add_ldflags
(
"clang++"
,
"-fopenmp"
)
version.txt
View file @
4f425eac
2.1.
5
2.1.
6
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