Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
VirtualFluids
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
iRMB
VirtualFluids
Merge requests
!436
Move MetisPartitioner to parallel
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Move MetisPartitioner to parallel
k.kutscher/VirtualFluids_dev:develop
into
develop
Overview
0
Commits
6
Pipelines
0
Changes
10
Merged
Konstantin Kutscher
requested to merge
k.kutscher/VirtualFluids_dev:develop
into
develop
9 months ago
Overview
0
Commits
6
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
version 3
version 3
8889f480
9 months ago
version 2
d8c2a88a
9 months ago
version 1
c633d605
9 months ago
develop (base)
and
latest version
latest version
3ed7a269
6 commits,
8 months ago
version 3
8889f480
5 commits,
9 months ago
version 2
d8c2a88a
4 commits,
9 months ago
version 1
c633d605
3 commits,
9 months ago
Show latest version
1 file
+
5
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/parallel/CMakeLists.txt
+
5
−
2
Options
@@ -56,6 +56,9 @@ if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU" OR CMAKE_CXX_COMPILER_ID MATCHES ".*Clan
endif
()
if
(
CMAKE_CXX_COMPILER_ID STREQUAL
"MSVC"
)
target_compile_options
(
parallel PRIVATE
"/wd4100"
)
# warning C4100: unreferenced formal paramete
target_compile_options
(
parallel PUBLIC
"/wd4005"
)
# disable macro redefinition (triggered by metis.h)
target_compile_options
(
parallel PUBLIC
"$<$<COMPILE_LANGUAGE:CUDA>:-Xcompiler=/wd4100>"
)
target_compile_options
(
parallel PUBLIC
"$<$<COMPILE_LANGUAGE:CXX>:/wd4100>"
)
target_compile_options
(
parallel PUBLIC
"$<$<COMPILE_LANGUAGE:CUDA>:-Xcompiler=/wd4005>"
)
target_compile_options
(
parallel PUBLIC
"$<$<COMPILE_LANGUAGE:CXX>:/wd4005>"
)
endif
()
\ No newline at end of file
Loading