Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
ORNL Quantum Computing Institute
xacc
Commits
4f161635
Commit
4f161635
authored
Sep 22, 2021
by
Mccaskey, Alex
Browse files
Merge branch 'master' of
https://github.com/eclipse/xacc
parents
dad87417
f493bd84
Pipeline
#165325
passed with stage
in 16 minutes and 11 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
tpls/eigen/Eigen/src/Core/arch/AltiVec/PacketMath.h
View file @
4f161635
...
...
@@ -452,7 +452,7 @@ template<> EIGEN_STRONG_INLINE Packet4f pandnot<Packet4f>(const Packet4f& a, con
template
<
>
EIGEN_STRONG_INLINE
Packet4i
pandnot
<
Packet4i
>
(
const
Packet4i
&
a
,
const
Packet4i
&
b
)
{
return
vec_and
(
a
,
vec_nor
(
b
,
b
));
}
template
<
>
EIGEN_STRONG_INLINE
Packet4f
pselect
(
const
Packet4f
&
mask
,
const
Packet4f
&
a
,
const
Packet4f
&
b
)
{
return
vec_sel
(
b
,
a
,
mask
);
return
vec_sel
(
b
,
a
,
reinterpret_cast
<
Packet4ui
>
(
mask
)
)
;
}
template
<
>
EIGEN_STRONG_INLINE
Packet4f
pround
<
Packet4f
>
(
const
Packet4f
&
a
)
{
return
vec_round
(
a
);
}
...
...
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