Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
simde
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
simde
Commits
5d0df2c8
Commit
5d0df2c8
authored
Jan 08, 2021
by
Evan Nemerson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
neon/add: implement vaddd_s64 and vaddd_u64
parent
a358b662
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
0 deletions
+28
-0
arm/neon/add.h
arm/neon/add.h
+28
-0
No files found.
arm/neon/add.h
View file @
5d0df2c8
...
@@ -33,6 +33,34 @@ HEDLEY_DIAGNOSTIC_PUSH
...
@@ -33,6 +33,34 @@ HEDLEY_DIAGNOSTIC_PUSH
SIMDE_DISABLE_UNWANTED_DIAGNOSTICS
SIMDE_DISABLE_UNWANTED_DIAGNOSTICS
SIMDE_BEGIN_DECLS_
SIMDE_BEGIN_DECLS_
SIMDE_FUNCTION_ATTRIBUTES
int64_t
simde_vaddd_s64
(
int64_t
a
,
int64_t
b
)
{
#if defined(SIMDE_ARM_NEON_A64V8_NATIVE)
return
vaddd_s64
(
a
,
b
);
#else
return
a
+
b
;
#endif
}
#if defined(SIMDE_ARM_NEON_A64V8_ENABLE_NATIVE_ALIASES)
#undef vaddd_s64
#define vaddd_s64(a, b) simde_vaddd_s64((a), (b))
#endif
SIMDE_FUNCTION_ATTRIBUTES
uint64_t
simde_vaddd_u64
(
uint64_t
a
,
uint64_t
b
)
{
#if defined(SIMDE_ARM_NEON_A64V8_NATIVE)
return
vaddd_u64
(
a
,
b
);
#else
return
a
+
b
;
#endif
}
#if defined(SIMDE_ARM_NEON_A64V8_ENABLE_NATIVE_ALIASES)
#undef vaddd_u64
#define vaddd_u64(a, b) simde_vaddd_u64((a), (b))
#endif
SIMDE_FUNCTION_ATTRIBUTES
SIMDE_FUNCTION_ATTRIBUTES
simde_float32x2_t
simde_float32x2_t
simde_vadd_f32
(
simde_float32x2_t
a
,
simde_float32x2_t
b
)
{
simde_vadd_f32
(
simde_float32x2_t
a
,
simde_float32x2_t
b
)
{
...
...
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