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
78faeab1
Commit
78faeab1
authored
May 17, 2023
by
Michael R. Crusoe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wasm/simd128: fix altivec_p7 version of wasm_f64x2_pmin
parent
1f359106
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
wasm/simd128.h
wasm/simd128.h
+4
-4
No files found.
wasm/simd128.h
View file @
78faeab1
...
...
@@ -5506,11 +5506,11 @@ simde_wasm_f64x2_pmin (simde_v128_t a, simde_v128_t b) {
a_.neon_f64
);
#elif defined(SIMDE_POWER_ALTIVEC_P7_NATIVE)
r_
.
altivec_f
32
=
r_.altivec_f
64
=
vec_sel(
a_
.
altivec_f
32
,
b_
.
altivec_f
32
,
vec_cmpgt
(
a_
.
altivec_f
32
,
b_
.
altivec_f32
)
a_.altivec_f
64
,
b_.altivec_f
64
,
vec_cmpgt(a_.altivec_f
64, b_.altivec_f64
)
);
#else
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