Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tsoc
openmm
Commits
b8c624fa
"src/cuhash/debugging.cpp" did not exist on "0757c45b1e361bbc703a5e1e212ec16f8ed0d339"
Commit
b8c624fa
authored
Jul 21, 2010
by
Peter Eastman
Browse files
Replaced a few more divisions by RECIP()
parent
43d61cd1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
platforms/opencl/src/kernels/gbsaObc2.cl
platforms/opencl/src/kernels/gbsaObc2.cl
+2
-2
No files found.
platforms/opencl/src/kernels/gbsaObc2.cl
View file @
b8c624fa
...
@@ -14,8 +14,8 @@ if (atom1 < NUM_ATOMS && atom2 < NUM_ATOMS && atom1 != atom2) {
...
@@ -14,8 +14,8 @@ if (atom1 < NUM_ATOMS && atom2 < NUM_ATOMS && atom1 != atom2) {
float
l_ij2I
=
l_ijI*l_ijI
;
float
l_ij2I
=
l_ijI*l_ijI
;
float
u_ij2J
=
u_ijJ*u_ijJ
;
float
u_ij2J
=
u_ijJ*u_ijJ
;
float
u_ij2I
=
u_ijI*u_ijI
;
float
u_ij2I
=
u_ijI*u_ijI
;
float
t1J
=
LOG
(
u_ijJ
/
l_ijJ
)
;
float
t1J
=
LOG
(
u_ijJ
*RECIP
(
l_ijJ
)
)
;
float
t1I
=
LOG
(
u_ijI
/
l_ijI
)
;
float
t1I
=
LOG
(
u_ijI
*RECIP
(
l_ijI
)
)
;
float
t2J
=
(
l_ij2J-u_ij2J
)
;
float
t2J
=
(
l_ij2J-u_ij2J
)
;
float
t2I
=
(
l_ij2I-u_ij2I
)
;
float
t2I
=
(
l_ij2I-u_ij2I
)
;
float
t3J
=
t2J*invR
;
float
t3J
=
t2J*invR
;
...
...
Write
Preview
Markdown
is supported
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