Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
SWIFTsim
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SWIFT
SWIFTsim
Commits
32fd2a2c
Commit
32fd2a2c
authored
8 years ago
by
James Willis
Browse files
Options
Downloads
Patches
Plain Diff
Added interaction function to use the cache to pull cj properties.
parent
25435eb9
No related branches found
No related tags found
1 merge request
!320
Dopair1 vectorisation merge
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/hydro/Gadget2/hydro_iact.h
+103
-0
103 additions, 0 deletions
src/hydro/Gadget2/hydro_iact.h
with
103 additions
and
0 deletions
src/hydro/Gadget2/hydro_iact.h
+
103
−
0
View file @
32fd2a2c
...
...
@@ -33,6 +33,7 @@
*/
#include
"minmax.h"
#include
"cache.h"
/**
* @brief Density loop
...
...
@@ -514,6 +515,108 @@ runner_iact_nonsym_intrinsic_vec_density(
#endif
}
__attribute__
((
always_inline
))
INLINE
static
void
runner_iact_nonsym_intrinsic_vec_2_density
(
const
struct
cache
*
const
cj_cache
,
const
int
*
const
indices
,
vector
*
r2
,
vector
*
dx
,
vector
*
dy
,
vector
*
dz
,
vector
hi_inv
,
vector
vix
,
vector
viy
,
vector
viz
,
vector
*
rhoSum
,
vector
*
rho_dhSum
,
vector
*
wcountSum
,
vector
*
wcount_dhSum
,
vector
*
div_vSum
,
vector
*
curlvxSum
,
vector
*
curlvySum
,
vector
*
curlvzSum
,
vector
mask
,
int
knlMask
)
{
//vector r, ri, r2, xi, wi, wi_dx;
vector
r
,
ri
,
xi
,
wi
,
wi_dx
;
vector
mj
;
//vector dx, dy, dz, dvx, dvy, dvz;
vector
dvx
,
dvy
,
dvz
;
vector
vjx
,
vjy
,
vjz
;
vector
dvdr
;
vector
curlvrx
,
curlvry
,
curlvrz
;
/* Fill the vectors. */
mj
.
v
=
vec_set
(
cj_cache
->
m
[
indices
[
0
]],
cj_cache
->
m
[
indices
[
1
]],
cj_cache
->
m
[
indices
[
2
]],
cj_cache
->
m
[
indices
[
3
]],
cj_cache
->
m
[
indices
[
4
]],
cj_cache
->
m
[
indices
[
5
]],
cj_cache
->
m
[
indices
[
6
]],
cj_cache
->
m
[
indices
[
7
]]);
vjx
.
v
=
vec_set
(
cj_cache
->
vx
[
indices
[
0
]],
cj_cache
->
vx
[
indices
[
1
]],
cj_cache
->
vx
[
indices
[
2
]],
cj_cache
->
vx
[
indices
[
3
]],
cj_cache
->
vx
[
indices
[
4
]],
cj_cache
->
vx
[
indices
[
5
]],
cj_cache
->
vx
[
indices
[
6
]],
cj_cache
->
vx
[
indices
[
7
]]);
vjy
.
v
=
vec_set
(
cj_cache
->
vy
[
indices
[
0
]],
cj_cache
->
vy
[
indices
[
1
]],
cj_cache
->
vy
[
indices
[
2
]],
cj_cache
->
vy
[
indices
[
3
]],
cj_cache
->
vy
[
indices
[
4
]],
cj_cache
->
vy
[
indices
[
5
]],
cj_cache
->
vy
[
indices
[
6
]],
cj_cache
->
vy
[
indices
[
7
]]);
vjz
.
v
=
vec_set
(
cj_cache
->
vz
[
indices
[
0
]],
cj_cache
->
vz
[
indices
[
1
]],
cj_cache
->
vz
[
indices
[
2
]],
cj_cache
->
vz
[
indices
[
3
]],
cj_cache
->
vz
[
indices
[
4
]],
cj_cache
->
vz
[
indices
[
5
]],
cj_cache
->
vz
[
indices
[
6
]],
cj_cache
->
vz
[
indices
[
7
]]);
//dx.v = vec_load(Dx);
//dy.v = vec_load(Dy);
//dz.v = vec_load(Dz);
/* Get the radius and inverse radius. */
//r2.v = vec_load(R2);
ri
=
vec_reciprocal_sqrt
(
*
r2
);
r
.
v
=
vec_mul
(
r2
->
v
,
ri
.
v
);
xi
.
v
=
vec_mul
(
r
.
v
,
hi_inv
.
v
);
/* Calculate the kernel for two particles. */
kernel_deval_1_vec
(
&
xi
,
&
wi
,
&
wi_dx
);
/* Compute dv. */
dvx
.
v
=
vec_sub
(
vix
.
v
,
vjx
.
v
);
dvy
.
v
=
vec_sub
(
viy
.
v
,
vjy
.
v
);
dvz
.
v
=
vec_sub
(
viz
.
v
,
vjz
.
v
);
/* Compute dv dot r */
dvdr
.
v
=
vec_fma
(
dvx
.
v
,
dx
->
v
,
vec_fma
(
dvy
.
v
,
dy
->
v
,
vec_mul
(
dvz
.
v
,
dz
->
v
)));
dvdr
.
v
=
vec_mul
(
dvdr
.
v
,
ri
.
v
);
/* Compute dv cross r */
curlvrx
.
v
=
vec_fma
(
dvy
.
v
,
dz
->
v
,
vec_mul
(
vec_set1
(
-
1
.
0
f
),
vec_mul
(
dvz
.
v
,
dy
->
v
)));
curlvry
.
v
=
vec_fma
(
dvz
.
v
,
dx
->
v
,
vec_mul
(
vec_set1
(
-
1
.
0
f
),
vec_mul
(
dvx
.
v
,
dz
->
v
)));
curlvrz
.
v
=
vec_fma
(
dvx
.
v
,
dy
->
v
,
vec_mul
(
vec_set1
(
-
1
.
0
f
),
vec_mul
(
dvy
.
v
,
dx
->
v
)));
curlvrx
.
v
=
vec_mul
(
curlvrx
.
v
,
ri
.
v
);
curlvry
.
v
=
vec_mul
(
curlvry
.
v
,
ri
.
v
);
curlvrz
.
v
=
vec_mul
(
curlvrz
.
v
,
ri
.
v
);
/* Mask updates to intermediate vector sums for particle pi. */
#ifdef HAVE_AVX512_F
rhoSum
->
v
=
_mm512_mask_add_ps
(
rhoSum
->
v
,
knlMask
,
vec_mul
(
mj
.
v
,
wi
.
v
),
rhoSum
->
v
);
rho_dhSum
->
v
=
_mm512_mask_sub_ps
(
rho_dhSum
->
v
,
knlMask
,
rho_dhSum
->
v
,
vec_mul
(
mj
.
v
,
vec_fma
(
vec_set1
(
hydro_dimension
),
wi
.
v
,
vec_mul
(
xi
.
v
,
wi_dx
.
v
))));
wcountSum
->
v
=
_mm512_mask_add_ps
(
wcountSum
->
v
,
knlMask
,
wi
.
v
,
wcountSum
->
v
);
wcount_dhSum
->
v
=
_mm512_mask_sub_ps
(
wcount_dhSum
->
v
,
knlMask
,
wcount_dhSum
->
v
,
vec_mul
(
xi
.
v
,
wi_dx
.
v
));
div_vSum
->
v
=
_mm512_mask_sub_ps
(
div_vSum
->
v
,
knlMask
,
div_vSum
->
v
,
vec_mul
(
mj
.
v
,
vec_mul
(
dvdr
.
v
,
wi_dx
.
v
)));
curlvxSum
->
v
=
_mm512_mask_add_ps
(
curlvxSum
->
v
,
knlMask
,
vec_mul
(
mj
.
v
,
vec_mul
(
curlvrx
.
v
,
wi_dx
.
v
)),
curlvxSum
->
v
);
curlvySum
->
v
=
_mm512_mask_add_ps
(
curlvySum
->
v
,
knlMask
,
vec_mul
(
mj
.
v
,
vec_mul
(
curlvry
.
v
,
wi_dx
.
v
)),
curlvySum
->
v
);
curlvzSum
->
v
=
_mm512_mask_add_ps
(
curlvzSum
->
v
,
knlMask
,
vec_mul
(
mj
.
v
,
vec_mul
(
curlvrz
.
v
,
wi_dx
.
v
)),
curlvzSum
->
v
);
#else
rhoSum
->
v
+=
vec_and
(
vec_mul
(
mj
.
v
,
wi
.
v
),
mask
.
v
);
rho_dhSum
->
v
-=
vec_and
(
vec_mul
(
mj
.
v
,
vec_fma
(
vec_set1
(
hydro_dimension
),
wi
.
v
,
vec_mul
(
xi
.
v
,
wi_dx
.
v
))),
mask
.
v
);
wcountSum
->
v
+=
vec_and
(
wi
.
v
,
mask
.
v
);
wcount_dhSum
->
v
-=
vec_and
(
vec_mul
(
xi
.
v
,
wi_dx
.
v
),
mask
.
v
);
div_vSum
->
v
-=
vec_and
(
vec_mul
(
mj
.
v
,
vec_mul
(
dvdr
.
v
,
wi_dx
.
v
)),
mask
.
v
);
curlvxSum
->
v
+=
vec_and
(
vec_mul
(
mj
.
v
,
vec_mul
(
curlvrx
.
v
,
wi_dx
.
v
)),
mask
.
v
);
curlvySum
->
v
+=
vec_and
(
vec_mul
(
mj
.
v
,
vec_mul
(
curlvry
.
v
,
wi_dx
.
v
)),
mask
.
v
);
curlvzSum
->
v
+=
vec_and
(
vec_mul
(
mj
.
v
,
vec_mul
(
curlvrz
.
v
,
wi_dx
.
v
)),
mask
.
v
);
#endif
}
/**
* @brief Density interaction computed using 2 interleaved vectors
* (non-symmetric vectorized version).
...
...
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