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
73160356
Commit
73160356
authored
Mar 25, 2024
by
Michael R. Crusoe
Committed by
Michael R. Crusoe
Mar 25, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x86 xop: fix some native functions
parent
4ecf271b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
arm/neon/paddl.h
arm/neon/paddl.h
+1
-1
x86/xop.h
x86/xop.h
+1
-1
No files found.
arm/neon/paddl.h
View file @
73160356
...
...
@@ -286,7 +286,7 @@ simde_vpaddlq_u16(simde_uint16x8_t a) {
simde_uint32x4_private
r_
;
#if defined(SIMDE_X86_XOP_NATIVE)
r_
.
sse_m128i
=
_mm_haddd_epu16
(
a_
.
sse_
m128i
);
r_
.
m128i
=
_mm_haddd_epu16
(
a_
.
m128i
);
#elif defined(SIMDE_X86_SSE2_NATIVE)
r_
.
m128i
=
_mm_add_epi32
(
...
...
x86/xop.h
View file @
73160356
...
...
@@ -3727,7 +3727,7 @@ simde_mm256_permute2_pd (simde__m256d a, simde__m256d b, simde__m256i c, const i
SIMDE_LCC_REVERT_DEPRECATED_WARNINGS \
}))
#else
#define simde_mm256_permute2_pd(a, b, c, imm8)
simde_undeprecated
_mm256_permute2_pd((a), (b), (c), (imm8))
#define simde_mm256_permute2_pd(a, b, c, imm8) _mm256_permute2_pd((a), (b), (c), (imm8))
#endif
#endif
#if defined(SIMDE_X86_XOP_ENABLE_NATIVE_ALIASES)
...
...
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