Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
dpa
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package 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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LuFG VR VIS
VR-Group
dpa
Commits
55277a12
Commit
55277a12
authored
5 years ago
by
Ali Can Demiralp
Browse files
Options
Downloads
Patches
Plain Diff
FTLE support may be enabled through cmake.
parent
7e07ba86
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CMakeLists.txt
+5
-0
5 additions, 0 deletions
CMakeLists.txt
source/stages/particle_advector.cpp
+1
-1
1 addition, 1 deletion
source/stages/particle_advector.cpp
with
6 additions
and
1 deletion
CMakeLists.txt
+
5
−
0
View file @
55277a12
...
...
@@ -10,6 +10,11 @@ set_max_warning_level ()
################################################## Options ##################################################
option
(
BUILD_TESTS
"Build tests."
OFF
)
option
(
DPA_FTLE_SUPPORT
"Build with FTLE support (i.e. particle gathering and grid remapping)."
OFF
)
if
(
DPA_FTLE_SUPPORT
)
list
(
APPEND PROJECT_COMPILE_DEFINITIONS -DDPA_FTLE_SUPPORT
)
endif
()
################################################## Sources ##################################################
file
(
GLOB_RECURSE PROJECT_HEADERS include/*.h include/*.hpp
)
...
...
This diff is collapsed.
Click to expand it.
source/stages/particle_advector.cpp
+
1
−
1
View file @
55277a12
...
...
@@ -414,7 +414,7 @@ void particle_advector::load_balance_collect (const
#endif
}
}
void
particle_advector
::
out_of_bounds_distribute
(
std
::
vector
<
particle
<
vector3
,
integer
>>&
particles
,
const
round_info
&
round_info
)
void
particle_advector
::
out_of_bounds_distribute
(
std
::
vector
<
particle
<
vector3
,
integer
>>&
particles
,
const
round_info
&
round_info
)
{
#ifdef DPA_USE_NEIGHBORHOOD_COLLECTIVES
// TODO: Neighborhood collectives.
...
...
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