Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
howjmay committed Jun 28, 2024
1 parent f83390a commit 363a23c
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ jobs:
matrix:
arch_with_features: [
# {arch: armv7, feature: none, arch_cflags: none},
{arch: aarch64, feature: none, arch_cflags: -O3},
# {arch: aarch64, feature: none, arch_cflags: none},
# {arch: aarch64, feature: crypto+crc, arch_cflags: none},
# {arch: armv7, feature: none, arch_cflags: '-mcpu=cortex-a32 -mfpu=neon-fp-armv8'}
{arch: armv7, feature: none, arch_cflags: '-mcpu=cortex-a32 -mfpu=neon-fp-armv8 -O3'}
]
cxx_compiler: [g++-10, clang++-11]
steps:
Expand Down
30 changes: 15 additions & 15 deletions tests/impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8431,21 +8431,21 @@ result_t test_mm_cvtepu8_epi64(const SSE2NEONTestImpl &impl, uint32_t iter)

#define GENERATE_MM_DP_PD_TEST_CASES \
MM_DP_PD_TEST_CASE_WITH(0xF0); \
MM_DP_PD_TEST_CASE_WITH(0xF1); \
MM_DP_PD_TEST_CASE_WITH(0xF2); \
MM_DP_PD_TEST_CASE_WITH(0xFF); \
MM_DP_PD_TEST_CASE_WITH(0x10); \
MM_DP_PD_TEST_CASE_WITH(0x11); \
MM_DP_PD_TEST_CASE_WITH(0x12); \
MM_DP_PD_TEST_CASE_WITH(0x13); \
MM_DP_PD_TEST_CASE_WITH(0x00); \
MM_DP_PD_TEST_CASE_WITH(0x01); \
MM_DP_PD_TEST_CASE_WITH(0x02); \
MM_DP_PD_TEST_CASE_WITH(0x03); \
MM_DP_PD_TEST_CASE_WITH(0x20); \
MM_DP_PD_TEST_CASE_WITH(0x21); \
MM_DP_PD_TEST_CASE_WITH(0x22); \
MM_DP_PD_TEST_CASE_WITH(0x23);
// MM_DP_PD_TEST_CASE_WITH(0xF1); \
// MM_DP_PD_TEST_CASE_WITH(0xF2); \
// MM_DP_PD_TEST_CASE_WITH(0xFF); \
// MM_DP_PD_TEST_CASE_WITH(0x10); \
// MM_DP_PD_TEST_CASE_WITH(0x11); \
// MM_DP_PD_TEST_CASE_WITH(0x12); \
// MM_DP_PD_TEST_CASE_WITH(0x13); \
// MM_DP_PD_TEST_CASE_WITH(0x00); \
// MM_DP_PD_TEST_CASE_WITH(0x01); \
// MM_DP_PD_TEST_CASE_WITH(0x02); \
// MM_DP_PD_TEST_CASE_WITH(0x03); \
// MM_DP_PD_TEST_CASE_WITH(0x20); \
// MM_DP_PD_TEST_CASE_WITH(0x21); \
// MM_DP_PD_TEST_CASE_WITH(0x22); \
// MM_DP_PD_TEST_CASE_WITH(0x23);

result_t test_mm_dp_pd(const SSE2NEONTestImpl &impl, uint32_t iter)
{
Expand Down

0 comments on commit 363a23c

Please sign in to comment.