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
f816d961
Commit
f816d961
authored
Feb 25, 2015
by
peastman
Browse files
Merge pull request #834 from peastman/pvec
Further improvements to PNaCl vectors
parents
57045028
49cc84c4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
50 additions
and
26 deletions
+50
-26
openmmapi/include/openmm/internal/vectorize_pnacl.h
openmmapi/include/openmm/internal/vectorize_pnacl.h
+50
-26
No files found.
openmmapi/include/openmm/internal/vectorize_pnacl.h
View file @
f816d961
...
...
@@ -109,24 +109,12 @@ public:
fvec4
operator
|
(
const
fvec4
&
other
)
const
{
return
(
fvec4
)
(((
__m128i
)
val
)
|
((
__m128i
)
other
.
val
));
}
fvec4
operator
==
(
const
fvec4
&
other
)
const
{
return
(
val
==
other
.
val
);
}
fvec4
operator
!=
(
const
fvec4
&
other
)
const
{
return
(
val
!=
other
.
val
);
}
fvec4
operator
>
(
const
fvec4
&
other
)
const
{
return
(
val
>
other
.
val
);
}
fvec4
operator
<
(
const
fvec4
&
other
)
const
{
return
(
val
<
other
.
val
);
}
fvec4
operator
>=
(
const
fvec4
&
other
)
const
{
return
(
val
>=
other
.
val
);
}
fvec4
operator
<=
(
const
fvec4
&
other
)
const
{
return
(
val
<=
other
.
val
);
}
ivec4
operator
==
(
const
fvec4
&
other
)
const
;
ivec4
operator
!=
(
const
fvec4
&
other
)
const
;
ivec4
operator
>
(
const
fvec4
&
other
)
const
;
ivec4
operator
<
(
const
fvec4
&
other
)
const
;
ivec4
operator
>=
(
const
fvec4
&
other
)
const
;
ivec4
operator
<=
(
const
fvec4
&
other
)
const
;
operator
ivec4
()
const
;
};
...
...
@@ -207,6 +195,30 @@ public:
// Conversion operators.
inline
ivec4
fvec4
::
operator
==
(
const
fvec4
&
other
)
const
{
return
(
__m128i
)
(
val
==
other
.
val
);
}
inline
ivec4
fvec4
::
operator
!=
(
const
fvec4
&
other
)
const
{
return
(
__m128i
)
(
val
!=
other
.
val
);
}
inline
ivec4
fvec4
::
operator
>
(
const
fvec4
&
other
)
const
{
return
(
__m128i
)
(
val
>
other
.
val
);
}
inline
ivec4
fvec4
::
operator
<
(
const
fvec4
&
other
)
const
{
return
(
__m128i
)
(
val
<
other
.
val
);
}
inline
ivec4
fvec4
::
operator
>=
(
const
fvec4
&
other
)
const
{
return
(
__m128i
)
(
val
>=
other
.
val
);
}
inline
ivec4
fvec4
::
operator
<=
(
const
fvec4
&
other
)
const
{
return
(
__m128i
)
(
val
<=
other
.
val
);
}
inline
fvec4
::
operator
ivec4
()
const
{
return
__builtin_convertvector
(
val
,
__m128i
);
}
...
...
@@ -221,10 +233,6 @@ static inline fvec4 abs(const fvec4& v) {
return
v
&
(
__m128
)
ivec4
(
0x7FFFFFFF
);
}
static
inline
fvec4
sqrt
(
const
fvec4
&
v
)
{
return
fvec4
(
std
::
sqrt
(
v
[
0
]),
std
::
sqrt
(
v
[
1
]),
std
::
sqrt
(
v
[
2
]),
std
::
sqrt
(
v
[
3
]));
}
static
inline
float
dot3
(
const
fvec4
&
v1
,
const
fvec4
&
v2
)
{
fvec4
r
=
v1
*
v2
;
return
r
[
0
]
+
r
[
1
]
+
r
[
2
];
...
...
@@ -313,13 +321,29 @@ static inline fvec4 round(const fvec4& v) {
}
static
inline
fvec4
floor
(
const
fvec4
&
v
)
{
fvec4
rounded
=
round
(
v
);
return
round
ed
+
blend
(
0.0
f
,
-
1.0
f
,
round
ed
>
v
);
fvec4
truncated
=
__builtin_convertvector
(
__builtin_convertvector
(
v
.
val
,
__m128i
),
__m128
);
return
truncat
ed
+
blend
(
0.0
f
,
-
1.0
f
,
truncat
ed
>
v
);
}
static
inline
fvec4
ceil
(
const
fvec4
&
v
)
{
fvec4
rounded
=
round
(
v
);
return
rounded
+
blend
(
0.0
f
,
1.0
f
,
rounded
<
v
);
fvec4
truncated
=
__builtin_convertvector
(
__builtin_convertvector
(
v
.
val
,
__m128i
),
__m128
);
return
truncated
+
blend
(
0.0
f
,
1.0
f
,
truncated
<
v
);
}
static
inline
fvec4
sqrt
(
const
fvec4
&
v
)
{
// Initial estimate of rsqrt().
ivec4
i
=
(
__m128i
)
v
;
i
=
ivec4
(
0x5f375a86
)
-
ivec4
(
i
.
val
>>
ivec4
(
1
).
val
);
fvec4
y
=
(
__m128
)
i
;
// Perform three iterations of Newton refinement.
fvec4
x2
=
0.5
f
*
v
;
y
*=
1.5
f
-
x2
*
y
*
y
;
y
*=
1.5
f
-
x2
*
y
*
y
;
y
*=
1.5
f
-
x2
*
y
*
y
;
return
y
*
v
;
}
#endif
/*OPENMM_VECTORIZE_PNACL_H_*/
...
...
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