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
33c4480d
Commit
33c4480d
authored
Sep 25, 2023
by
M-HT
Committed by
Michael R. Crusoe
Sep 26, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove non-working MMX specialization from simde_vmin_s16
parent
6f4afd63
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
8 deletions
+4
-8
arm/neon/min.h
arm/neon/min.h
+4
-8
No files found.
arm/neon/min.h
View file @
33c4480d
...
@@ -159,14 +159,10 @@ simde_vmin_s16(simde_int16x4_t a, simde_int16x4_t b) {
...
@@ -159,14 +159,10 @@ simde_vmin_s16(simde_int16x4_t a, simde_int16x4_t b) {
a_
=
simde_int16x4_to_private
(
a
),
a_
=
simde_int16x4_to_private
(
a
),
b_
=
simde_int16x4_to_private
(
b
);
b_
=
simde_int16x4_to_private
(
b
);
#if defined(SIMDE_X86_MMX_NATIVE)
SIMDE_VECTORIZE
r_
.
m64
=
_mm_sub_pi16
(
a_
.
m64
,
_mm_subs_pu16
(
b_
.
m64
));
for
(
size_t
i
=
0
;
i
<
(
sizeof
(
r_
.
values
)
/
sizeof
(
r_
.
values
[
0
]))
;
i
++
)
{
#else
r_
.
values
[
i
]
=
(
a_
.
values
[
i
]
<
b_
.
values
[
i
])
?
a_
.
values
[
i
]
:
b_
.
values
[
i
];
SIMDE_VECTORIZE
}
for
(
size_t
i
=
0
;
i
<
(
sizeof
(
r_
.
values
)
/
sizeof
(
r_
.
values
[
0
]))
;
i
++
)
{
r_
.
values
[
i
]
=
(
a_
.
values
[
i
]
<
b_
.
values
[
i
])
?
a_
.
values
[
i
]
:
b_
.
values
[
i
];
}
#endif
return
simde_int16x4_from_private
(
r_
);
return
simde_int16x4_from_private
(
r_
);
#endif
#endif
...
...
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