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
e676d998
Commit
e676d998
authored
May 20, 2023
by
Michael R. Crusoe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
clang powerpc: vec_bperm bug was fixed in clang-14
parent
0e3290e8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
simde-common.h
simde-common.h
+3
-1
x86/gfni.h
x86/gfni.h
+1
-1
No files found.
simde-common.h
View file @
e676d998
...
@@ -1035,7 +1035,9 @@ HEDLEY_DIAGNOSTIC_POP
...
@@ -1035,7 +1035,9 @@ HEDLEY_DIAGNOSTIC_POP
# define SIMDE_BUG_CLANG_POWER9_16x4_BAD_SHIFT
# define SIMDE_BUG_CLANG_POWER9_16x4_BAD_SHIFT
# endif
# endif
# if defined(SIMDE_ARCH_POWER)
# if defined(SIMDE_ARCH_POWER)
# define SIMDE_BUG_CLANG_50932
# if !SIMDE_DETECT_CLANG_VERSION_CHECK(14,0,0)
# define SIMDE_BUG_CLANG_50932
# endif
# if !SIMDE_DETECT_CLANG_VERSION_CHECK(12,0,0)
# if !SIMDE_DETECT_CLANG_VERSION_CHECK(12,0,0)
# define SIMDE_BUG_VEC_CPSGN_REVERSED_ARGS
# define SIMDE_BUG_VEC_CPSGN_REVERSED_ARGS
# endif
# endif
...
...
x86/gfni.h
View file @
e676d998
...
@@ -267,7 +267,7 @@ simde_x_mm_gf2p8matrix_multiply_epi64_epi8 (simde__m128i x, simde__m128i A) {
...
@@ -267,7 +267,7 @@ simde_x_mm_gf2p8matrix_multiply_epi64_epi8 (simde__m128i x, simde__m128i A) {
for
(
int
i
=
0
;
i
<
8
;
i
++
)
{
for
(
int
i
=
0
;
i
<
8
;
i
++
)
{
#if defined(SIMDE_BUG_CLANG_50932)
#if defined(SIMDE_BUG_CLANG_50932)
p
=
HEDLEY_REINTERPRET_CAST
(
SIMDE_POWER_ALTIVEC_VECTOR
(
unsigned
char
),
p
=
HEDLEY_REINTERPRET_CAST
(
SIMDE_POWER_ALTIVEC_VECTOR
(
unsigned
char
),
vec_bperm
(
HEDLEY_
STATIC
_CAST
(
SIMDE_POWER_ALTIVEC_VECTOR
(
unsigned
__int128
),
a
),
bit_select
));
vec_bperm
(
HEDLEY_
REINTERPRET
_CAST
(
SIMDE_POWER_ALTIVEC_VECTOR
(
unsigned
__int128
),
a
),
bit_select
));
#else
#else
p
=
vec_bperm
(
a
,
bit_select
);
p
=
vec_bperm
(
a
,
bit_select
);
#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