Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
waLBerla
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Michael Gardner
waLBerla
Commits
83b31025
Commit
83b31025
authored
4 years ago
by
Christoph Schwarzmeier
Committed by
Michael Kuron
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Exclude FluctuatingMRT test when using OPTIMIZE_FOR_LOCALHOST
parent
a87980ad
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/lbm/CMakeLists.txt
+4
-1
4 additions, 1 deletion
tests/lbm/CMakeLists.txt
with
4 additions
and
1 deletion
tests/lbm/CMakeLists.txt
+
4
−
1
View file @
83b31025
...
@@ -84,9 +84,12 @@ waLBerla_generate_target_from_python(NAME LbCodeGenerationExampleGenerated
...
@@ -84,9 +84,12 @@ waLBerla_generate_target_from_python(NAME LbCodeGenerationExampleGenerated
LbCodeGenerationExample_UBB.cpp LbCodeGenerationExample_UBB.h
)
LbCodeGenerationExample_UBB.cpp LbCodeGenerationExample_UBB.h
)
waLBerla_compile_test
(
FILES codegen/LbCodeGenerationExample.cpp DEPENDS LbCodeGenerationExampleGenerated
)
waLBerla_compile_test
(
FILES codegen/LbCodeGenerationExample.cpp DEPENDS LbCodeGenerationExampleGenerated
)
# FluctuatingMRT test does not work with WALBERLA_OPTIMIZE_FOR_LOCALHOST since the random number generator is not implemented with SIMD
if
(
NOT WALBERLA_OPTIMIZE_FOR_LOCALHOST
)
waLBerla_generate_target_from_python
(
NAME FluctuatingMRTGenerated FILE codegen/FluctuatingMRT.py
waLBerla_generate_target_from_python
(
NAME FluctuatingMRTGenerated FILE codegen/FluctuatingMRT.py
OUT_FILES FluctuatingMRT_LatticeModel.cpp FluctuatingMRT_LatticeModel.h
)
OUT_FILES FluctuatingMRT_LatticeModel.cpp FluctuatingMRT_LatticeModel.h
)
waLBerla_compile_test
(
FILES codegen/FluctuatingMRT.cpp DEPENDS FluctuatingMRTGenerated
)
waLBerla_compile_test
(
FILES codegen/FluctuatingMRT.cpp DEPENDS FluctuatingMRTGenerated
)
endif
()
waLBerla_generate_target_from_python
(
NAME FieldLayoutAndVectorizationTestGenerated FILE codegen/FieldLayoutAndVectorizationTest.py
waLBerla_generate_target_from_python
(
NAME FieldLayoutAndVectorizationTestGenerated FILE codegen/FieldLayoutAndVectorizationTest.py
OUT_FILES FieldLayoutAndVectorizationTest_FZYX_Vec_LatticeModel.cpp FieldLayoutAndVectorizationTest_FZYX_Vec_LatticeModel.h
OUT_FILES FieldLayoutAndVectorizationTest_FZYX_Vec_LatticeModel.cpp FieldLayoutAndVectorizationTest_FZYX_Vec_LatticeModel.h
...
@@ -95,4 +98,4 @@ waLBerla_generate_target_from_python(NAME FieldLayoutAndVectorizationTestGenerat
...
@@ -95,4 +98,4 @@ waLBerla_generate_target_from_python(NAME FieldLayoutAndVectorizationTestGenerat
FieldLayoutAndVectorizationTest_ZYXF_NoVec_LatticeModel.cpp FieldLayoutAndVectorizationTest_ZYXF_NoVec_LatticeModel.h
)
FieldLayoutAndVectorizationTest_ZYXF_NoVec_LatticeModel.cpp FieldLayoutAndVectorizationTest_ZYXF_NoVec_LatticeModel.h
)
waLBerla_compile_test
(
FILES codegen/FieldLayoutAndVectorizationTest.cpp DEPENDS FieldLayoutAndVectorizationTestGenerated
)
waLBerla_compile_test
(
FILES codegen/FieldLayoutAndVectorizationTest.cpp DEPENDS FieldLayoutAndVectorizationTestGenerated
)
endif
()
endif
()
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment