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 1894566 commit c92291a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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
4 changes: 2 additions & 2 deletions sse2neon.h
Original file line number Diff line number Diff line change
Expand Up @@ -6850,7 +6850,7 @@ FORCE_INLINE __m128d _mm_ceil_pd(__m128d a)
#else
bit64_union_t a0, a1;
a0.u64 = vgetq_lane_u64(vreinterpretq_u64_m128d(a), 0);
a1.u64 = vgetq_lane_u64(vreinterpretq_u64_m128d(a), 1);;
a1.u64 = vgetq_lane_u64(vreinterpretq_u64_m128d(a), 1);
return _mm_set_pd(ceil(a1.f64), ceil(a0.f64));
#endif
}
Expand Down Expand Up @@ -7168,7 +7168,7 @@ FORCE_INLINE __m128d _mm_floor_pd(__m128d a)
#else
bit64_union_t a0, a1;
a0.u64 = vgetq_lane_u64(vreinterpretq_u64_m128d(a), 0);
a1.u64 = vgetq_lane_u64(vreinterpretq_u64_m128d(a), 1);;
a1.u64 = vgetq_lane_u64(vreinterpretq_u64_m128d(a), 1);
return _mm_set_pd(floor(a1.f64), floor(a0.f64));
#endif
}
Expand Down

0 comments on commit c92291a

Please sign in to comment.