Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
solverstack
ScalFMM
Commits
703c1cf2
Commit
703c1cf2
authored
Oct 01, 2013
by
BRAMAS Berenger
Browse files
add doc about periodic and wip for sse intel
parent
0fd1b39c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Src/Utils/FSse.hpp
View file @
703c1cf2
...
...
@@ -9,19 +9,19 @@
#ifdef __INTEL_COMPILER
__m128d
&
operator
+=
(
const
__m128d
&
v1
,
const
__m128d
&
v2
){
__m128d
&
operator
+=
(
__m128d
&
v1
,
const
__m128d
&
v2
){
return
(
v1
=
_mm_add_pd
(
v1
,
v2
));
}
__m128d
&
operator
-=
(
const
__m128d
&
v1
,
const
__m128d
&
v2
){
__m128d
&
operator
-=
(
__m128d
&
v1
,
const
__m128d
&
v2
){
return
(
v1
=
_mm_sub_pd
(
v1
,
v2
));
}
__m128d
&
operator
*=
(
const
__m128d
&
v1
,
const
__m128d
&
v2
){
__m128d
&
operator
*=
(
__m128d
&
v1
,
const
__m128d
&
v2
){
return
(
v1
=
_mm_mul_pd
(
v1
,
v2
));
}
__m128d
&
operator
/=
(
const
__m128d
&
v1
,
const
__m128d
&
v2
){
__m128d
&
operator
/=
(
__m128d
&
v1
,
const
__m128d
&
v2
){
return
(
v1
=
_mm_div_pd
(
v1
,
v2
));
}
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment