Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TurTLE
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
TurTLE
TurTLE
Commits
e3cba618
Commit
e3cba618
authored
5 years ago
by
Tobias Baetge
Browse files
Options
Downloads
Patches
Plain Diff
[WIP] debugging particle IDs given in collision counter
parent
8832ae48
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
cpp/particles/p2p_distr_mpi.hpp
+44
-21
44 additions, 21 deletions
cpp/particles/p2p_distr_mpi.hpp
cpp/particles/p2p_ghost_collisions.hpp
+15
-7
15 additions, 7 deletions
cpp/particles/p2p_ghost_collisions.hpp
with
59 additions
and
28 deletions
cpp/particles/p2p_distr_mpi.hpp
+
44
−
21
View file @
e3cba618
...
...
@@ -333,19 +333,32 @@ public:
});
// Permute array using buffer
// permute 4th function parameter using buffer, based on information in first 3 parameters
std
::
vector
<
unsigned
char
>
buffer
;
permute_copy
<
real_number
,
size_particle_positions
>
(
current_offset_particles_for_partition
[
idxPartition
],
permute_copy
<
real_number
,
size_particle_positions
>
(
current_offset_particles_for_partition
[
idxPartition
],
current_my_nb_particles_per_partition
[
idxPartition
],
part_to_sort
.
data
(),
particles_positions
,
&
buffer
);
permute_copy
<
real_number
,
size_particle_rhs
>
(
current_offset_particles_for_partition
[
idxPartition
],
part_to_sort
.
data
(),
particles_positions
,
&
buffer
);
permute_copy
<
real_number
,
size_particle_rhs
>
(
current_offset_particles_for_partition
[
idxPartition
],
current_my_nb_particles_per_partition
[
idxPartition
],
part_to_sort
.
data
(),
particles_current_rhs
,
&
buffer
);
permute_copy
<
partsize_t
,
1
>
(
current_offset_particles_for_partition
[
idxPartition
],
part_to_sort
.
data
(),
particles_current_rhs
,
&
buffer
);
permute_copy
<
partsize_t
,
1
>
(
current_offset_particles_for_partition
[
idxPartition
],
current_my_nb_particles_per_partition
[
idxPartition
],
part_to_sort
.
data
(),
inout_index_particles
,
&
buffer
);
permute_copy
<
long
int
,
1
>
(
current_offset_particles_for_partition
[
idxPartition
],
part_to_sort
.
data
(),
inout_index_particles
,
&
buffer
);
permute_copy
<
long
int
,
1
>
(
current_offset_particles_for_partition
[
idxPartition
],
current_my_nb_particles_per_partition
[
idxPartition
],
part_to_sort
.
data
(),
particles_coord
.
get
(),
&
buffer
);
part_to_sort
.
data
(),
particles_coord
.
get
(),
&
buffer
);
}
}
...
...
@@ -639,7 +652,12 @@ public:
const
std
::
vector
<
std
::
pair
<
partsize_t
,
partsize_t
>>*
neighbors
[
27
];
long
int
neighbors_indexes
[
27
];
std
::
array
<
real_number
,
3
>
shift
[
27
];
const
int
nbNeighbors
=
my_tree
.
getNeighbors
(
current_cell_idx
,
neighbors
,
neighbors_indexes
,
shift
,
true
);
const
int
nbNeighbors
=
my_tree
.
getNeighbors
(
current_cell_idx
,
neighbors
,
neighbors_indexes
,
shift
,
true
);
// with other interval
for
(
int
idx_neighbor
=
0
;
idx_neighbor
<
nbNeighbors
;
++
idx_neighbor
){
...
...
@@ -648,7 +666,8 @@ public:
for
(
size_t
idx_2
=
0
;
idx_2
<
(
*
neighbors
[
idx_neighbor
]).
size
()
;
++
idx_2
){
for
(
partsize_t
idx_p1
=
0
;
idx_p1
<
nb_parts_in_cell
;
++
idx_p1
){
for
(
partsize_t
idx_p2
=
0
;
idx_p2
<
(
*
neighbors
[
idx_neighbor
])[
idx_2
].
second
;
++
idx_p2
){
const
real_number
dist_r2
=
compute_distance_r2
(
descriptor
.
toCompute
[(
idxPart
+
idx_p1
)
*
size_particle_positions
+
IDXC_X
],
const
real_number
dist_r2
=
compute_distance_r2
(
descriptor
.
toCompute
[(
idxPart
+
idx_p1
)
*
size_particle_positions
+
IDXC_X
],
descriptor
.
toCompute
[(
idxPart
+
idx_p1
)
*
size_particle_positions
+
IDXC_Y
],
descriptor
.
toCompute
[(
idxPart
+
idx_p1
)
*
size_particle_positions
+
IDXC_Z
],
particles_positions
[((
*
neighbors
[
idx_neighbor
])[
idx_2
].
first
+
idx_p2
)
*
size_particle_positions
+
IDXC_X
],
...
...
@@ -663,7 +682,11 @@ public:
inout_index_particles
[((
*
neighbors
[
idx_neighbor
])[
idx_2
].
first
+
idx_p2
)],
&
particles_positions
[((
*
neighbors
[
idx_neighbor
])[
idx_2
].
first
+
idx_p2
)
*
size_particle_positions
],
&
particles_current_rhs
[((
*
neighbors
[
idx_neighbor
])[
idx_2
].
first
+
idx_p2
)
*
size_particle_rhs
],
dist_r2
,
cutoff_radius_compute
,
shift
[
idx_neighbor
][
IDXC_X
],
shift
[
idx_neighbor
][
IDXC_Y
],
shift
[
idx_neighbor
][
IDXC_Z
]);
dist_r2
,
cutoff_radius_compute
,
shift
[
idx_neighbor
][
IDXC_X
],
shift
[
idx_neighbor
][
IDXC_Y
],
shift
[
idx_neighbor
][
IDXC_Z
]);
}
}
}
...
...
This diff is collapsed.
Click to expand it.
cpp/particles/p2p_ghost_collisions.hpp
+
15
−
7
View file @
e3cba618
...
...
@@ -32,8 +32,8 @@ std::vector<partsize_t> pairs2vec(std::set <std::pair <partsize_t,partsize_t>> I
std
::
vector
<
partsize_t
>
v
(
2
*
ID_pairs
.
size
());
for
(
unsigned
int
i
=
0
;
i
<
ID_pairs
.
size
();
i
++
)
{
v
[
2
*
i
-
2
]
=
std
::
get
<
0
>
(
*
std
::
next
(
ID_pairs
.
begin
(),
i
));
v
[
2
*
i
-
1
]
=
std
::
get
<
1
>
(
*
std
::
next
(
ID_pairs
.
begin
(),
i
));
v
[
2
*
i
]
=
(
*
std
::
next
(
ID_pairs
.
begin
(),
i
))
.
first
;
v
[
2
*
i
+
1
]
=
(
*
std
::
next
(
ID_pairs
.
begin
(),
i
))
.
second
;
}
return
v
;
}
...
...
@@ -43,7 +43,9 @@ std::set <std::pair <partsize_t,partsize_t>> vec2pairs(std::vector<partsize_t> v
std
::
set
<
std
::
pair
<
partsize_t
,
partsize_t
>>
ID_pairs
;
for
(
unsigned
int
i
=
0
;
i
<
v
.
size
()
/
2
;
i
++
)
{
ID_pairs
.
insert
(
std
::
pair
<
partsize_t
,
partsize_t
>
(
v
[
2
*
i
],
v
[
2
*
i
+
1
]));
DEBUG_MSG
((
std
::
to_string
(
v
[
2
*
i
])
+
" "
+
std
::
to_string
(
v
[
2
*
i
+
1
])
+
"
\n
"
).
c_str
());
std
::
pair
<
partsize_t
,
partsize_t
>
single_collision_pair
(
v
[
2
*
i
],
v
[
2
*
i
+
1
]);
ID_pairs
.
insert
(
single_collision_pair
);
}
return
ID_pairs
;
}
...
...
@@ -69,14 +71,20 @@ public:
template
<
int
size_particle_positions
,
int
size_particle_rhs
>
void
compute_interaction
(
const
partsize_t
idx_part1
,
const
real_number
/*pos_part1*/
[],
real_number
/*rhs_part1*/
[],
const
real_number
/*pos_part1*/
[],
real_number
/*rhs_part1*/
[],
const
partsize_t
idx_part2
,
const
real_number
/*pos_part2*/
[],
real_number
/*rhs_part2*/
[],
const
real_number
/*dist_pow2*/
,
const
real_number
/*cutoff*/
,
const
real_number
/*xshift_coef*/
,
const
real_number
/*yshift_coef*/
,
const
real_number
/*zshift_coef*/
){
const
real_number
/*pos_part2*/
[],
real_number
/*rhs_part2*/
[],
const
real_number
/*dist_pow2*/
,
const
real_number
/*cutoff*/
,
const
real_number
/*xshift_coef*/
,
const
real_number
/*yshift_coef*/
,
const
real_number
/*zshift_coef*/
){
collision_counter
+=
1
;
std
::
pair
<
partsize_t
,
partsize_t
>
single_collision_pair
(
idx_part1
,
idx_part2
);
this
->
collision_pairs
.
insert
(
single_collision_pair
);
//assert(idx_part1==0 and idx_part2==0);
}
void
merge
(
const
p2p_ghost_collisions
&
other
){
...
...
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