Skip to content
GitLab
Menu
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
590e7bed
Commit
590e7bed
authored
May 05, 2014
by
PIACIBELLO Cyrille
Browse files
Should definitely works on Intel Compiler, tested on Bright cluster
parent
606c12b3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Src/Utils/FAvx.hpp
View file @
590e7bed
...
...
@@ -6,19 +6,19 @@
#ifdef __INTEL_COMPILER
//Side effect operators DOUBLE
inline
__m256d
&
operator
+=
(
__m256d
&
a
,
__m256d
&
b
){
inline
__m256d
&
operator
+=
(
__m256d
&
a
,
const
__m256d
&
b
){
return
(
a
=
_mm256_add_pd
(
a
,
b
));
}
inline
__m256d
&
operator
-=
(
__m256d
&
a
,
__m256d
&
b
){
inline
__m256d
&
operator
-=
(
__m256d
&
a
,
const
__m256d
&
b
){
return
(
a
=
_mm256_sub_pd
(
a
,
b
));
}
inline
__m256d
&
operator
*=
(
__m256d
&
a
,
__m256d
&
b
){
inline
__m256d
&
operator
*=
(
__m256d
&
a
,
const
__m256d
&
b
){
return
(
a
=
_mm256_mul_pd
(
a
,
b
));
}
inline
__m256d
&
operator
/=
(
__m256d
&
a
,
__m256d
&
b
){
inline
__m256d
&
operator
/=
(
__m256d
&
a
,
const
__m256d
&
b
){
return
(
a
=
_mm256_div_pd
(
a
,
b
));
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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