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
236ddb9f
Commit
236ddb9f
authored
Oct 17, 2013
by
BRAMAS Berenger
Browse files
remove bug when using sse non mutual
parent
c521f834
Changes
1
Hide whitespace changes
Inline
Side-by-side
Src/Kernels/P2P/FP2P.hpp
View file @
236ddb9f
...
...
@@ -524,7 +524,7 @@ public:
for
(
int
idxNeighbors
=
0
;
idxNeighbors
<
limiteNeighbors
;
++
idxNeighbors
){
if
(
inNeighbors
[
idxNeighbors
]
){
const
int
nbParticlesSources
=
inNeighbors
[
idxNeighbors
]
->
getNbParticles
()
/
2
;
const
int
nbParticlesSources
=
(
inNeighbors
[
idxNeighbors
]
->
getNbParticles
()
+
1
)
/
2
;
const
__m128d
*
const
sourcesPhysicalValues
=
(
const
__m128d
*
)
inNeighbors
[
idxNeighbors
]
->
getPhysicalValues
();
const
__m128d
*
const
sourcesX
=
(
const
__m128d
*
)
inNeighbors
[
idxNeighbors
]
->
getPositions
()[
0
];
const
__m128d
*
const
sourcesY
=
(
const
__m128d
*
)
inNeighbors
[
idxNeighbors
]
->
getPositions
()[
1
];
...
...
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