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
979a1025
Commit
979a1025
authored
Dec 21, 2020
by
Evan Nemerson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sse: work around missing vrndiq_f32 on GCC on armv8 with NEON
Fixes #656
parent
c68b2649
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
x86/sse.h
x86/sse.h
+1
-1
No files found.
x86/sse.h
View file @
979a1025
...
@@ -411,7 +411,7 @@ simde_x_mm_round_ps (simde__m128 a, int rounding, int lax_rounding)
...
@@ -411,7 +411,7 @@ simde_x_mm_round_ps (simde__m128 a, int rounding, int lax_rounding)
case
SIMDE_MM_FROUND_CUR_DIRECTION
:
case
SIMDE_MM_FROUND_CUR_DIRECTION
:
#if defined(SIMDE_POWER_ALTIVEC_P6_NATIVE)
#if defined(SIMDE_POWER_ALTIVEC_P6_NATIVE)
r_
.
altivec_f32
=
HEDLEY_REINTERPRET_CAST
(
SIMDE_POWER_ALTIVEC_VECTOR
(
float
),
vec_round
(
a_
.
altivec_f32
));
r_
.
altivec_f32
=
HEDLEY_REINTERPRET_CAST
(
SIMDE_POWER_ALTIVEC_VECTOR
(
float
),
vec_round
(
a_
.
altivec_f32
));
#elif defined(SIMDE_ARM_NEON_A32V8_NATIVE)
#elif defined(SIMDE_ARM_NEON_A32V8_NATIVE)
&& !defined(SIMDE_BUG_GCC_95399)
r_
.
neon_f32
=
vrndiq_f32
(
a_
.
neon_f32
);
r_
.
neon_f32
=
vrndiq_f32
(
a_
.
neon_f32
);
#elif defined(simde_math_nearbyintf)
#elif defined(simde_math_nearbyintf)
SIMDE_VECTORIZE
SIMDE_VECTORIZE
...
...
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