Skip to content

Commit

Permalink
replace __builtin_s390_vflls with npyv_doublee as before
Browse files Browse the repository at this point in the history
  • Loading branch information
pradghos authored and charris committed Feb 2, 2023
1 parent be50440 commit 289d240
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions numpy/core/src/common/simd/vec/conversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ npyv_pack_b8_b64(npyv_b64 a, npyv_b64 b, npyv_b64 c, npyv_b64 d,
#ifdef NPY_HAVE_VXE2
return vec_signed(a);
#elif defined(NPY_HAVE_VXE)
return vec_packs(vec_signed(__builtin_s390_vflls(vec_mergeh(a,a))),
vec_signed(__builtin_s390_vflls(vec_mergel(a, a))));
return vec_packs(vec_signed(npyv_doublee(vec_mergeh(a,a))),
vec_signed(npyv_doublee(vec_mergel(a, a))));
// VSX
#elif defined(__IBMC__)
return vec_cts(a, 0);
Expand Down

0 comments on commit 289d240

Please sign in to comment.