shithub
fortrangoingonforty
/
afs-as
/
Sign in
Sign up
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
afs-as
Public
Watch
0
Fork
0
Star
0
afs-as
/
tests
/
clang_probe
/
vector_fmla_2d.c
C · 211 bytes
Raw
Blame
History
1
#include
<arm_neon.h>
2
3
float64x2_t
mla2d
(
float64x2_t
a
,
float64x2_t
b
,
float64x2_t
c
)
{
return
vfmaq_f64
(
a
,
b
,
c
);
}
4
float64x2_t
mls2d
(
float64x2_t
a
,
float64x2_t
b
,
float64x2_t
c
)
{
return
vfmsq_f64
(
a
,
b
,
c
);
}