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
Commits
913c2b0c
Commit
913c2b0c
authored
2 years ago
by
Anna Wellmann
Browse files
Options
Downloads
Patches
Plain Diff
Add some more doxygen documentation
parent
b4de0734
No related branches found
No related tags found
1 merge request
!106
Refactor routine for finding the edge nodes
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/gpu/VirtualFluids_GPU/Parameter/EdgeNodeFinder.h
+6
-3
6 additions, 3 deletions
src/gpu/VirtualFluids_GPU/Parameter/EdgeNodeFinder.h
with
6 additions
and
3 deletions
src/gpu/VirtualFluids_GPU/Parameter/EdgeNodeFinder.h
+
6
−
3
View file @
913c2b0c
...
...
@@ -53,13 +53,16 @@ void findEdgeNodesCommMultiGPU(SPtr<Parameter> parameter);
// anonymous namespace
namespace
{
//! \brief Find nodes that are both received in the x-direction and sent in the y-direction
void
findEdgeNodesXY
(
int
level
,
SPtr
<
Parameter
>
parameter
);
//! \brief Find nodes that are both received in the x-direction and sent in the z-direction
void
findEdgeNodesXZ
(
int
level
,
SPtr
<
Parameter
>
parameter
);
//! \brief Find nodes that are both received in the y-direction and sent in the z-direction
void
findEdgeNodesYZ
(
int
level
,
SPtr
<
Parameter
>
parameter
);
void
findEdgeNodes
(
const
std
::
vector
<
ProcessNeighbor27
>
&
recvProcessNeighbor
,
const
std
::
vector
<
ProcessNeighbor27
>
&
sendProcessNeighbor
,
std
::
vector
<
LBMSimulationParameter
::
EdgeNodePositions
>
&
edgeNodes
);
bool
findIndexInSendNodes
(
int
nodeIndex
,
const
std
::
vector
<
ProcessNeighbor27
>&
sendProcessNeighbor
,
int
&
indexOfProcessNeighborSend
,
int
&
indexInSendBuffer
);
void
findEdgeNodesXY
(
int
level
,
SPtr
<
Parameter
>
parameter
);
void
findEdgeNodesXZ
(
int
level
,
SPtr
<
Parameter
>
parameter
);
void
findEdgeNodesYZ
(
int
level
,
SPtr
<
Parameter
>
parameter
);
}
// namespace
#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