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
SWIFT
SWIFTsim
Commits
69916f46
Commit
69916f46
authored
Sep 12, 2017
by
James Willis
Browse files
Fixed bug that may cause an overflow in sort_j[].
parent
7e249423
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/runner_doiact_vec.c
View file @
69916f46
...
...
@@ -290,7 +290,7 @@ __attribute__((always_inline)) INLINE static void populate_max_index_no_cache(
const
float
first_di
=
sort_i
[
first_pi
].
d
+
pi
->
h
*
kernel_gamma
+
dx_max
-
rshift
;
/* Loop through particles in cell j until they are not in range of pi. */
while
(
temp
<
=
cj
->
count
&&
first_di
>
sort_j
[
temp
].
d
)
while
(
temp
<
cj
->
count
&&
first_di
>
sort_j
[
temp
].
d
)
temp
++
;
max_index_i
[
first_pi
]
=
temp
;
...
...
@@ -302,7 +302,7 @@ __attribute__((always_inline)) INLINE static void populate_max_index_no_cache(
const
float
di
=
sort_i
[
i
].
d
+
pi
->
h
*
kernel_gamma
+
dx_max
-
rshift
;
while
(
temp
<
=
cj
->
count
&&
di
>
sort_j
[
temp
].
d
)
while
(
temp
<
cj
->
count
&&
di
>
sort_j
[
temp
].
d
)
temp
++
;
max_index_i
[
i
]
=
temp
;
...
...
James Willis
@jwillis
mentioned in commit
2b18a5ec
·
Sep 12, 2017
mentioned in commit
2b18a5ec
mentioned in commit 2b18a5ece5b039ffedd18afb763b01b2b5e56250
Toggle commit list
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