diff options
author | Erik Schnetter <schnetter@gmail.com> | 2015-10-16 13:36:03 -0400 |
---|---|---|
committer | Erik Schnetter <schnetter@gmail.com> | 2015-10-16 13:36:03 -0400 |
commit | bbb634b371a379fe32de825b68381a229949165a (patch) | |
tree | 698b14f1400f60465db73c8c9700b2928783053e | |
parent | 05b1ff274ebd0a1b2d4e921088b02f123ba78cb4 (diff) | |
download | vecmathlib-bbb634b371a379fe32de825b68381a229949165a.zip vecmathlib-bbb634b371a379fe32de825b68381a229949165a.tar.gz |
Begin to implement AVX2 support for 16-bit types
-rw-r--r-- | vec_avx_fp16_16.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/vec_avx_fp16_16.h b/vec_avx_fp16_16.h index 20cd5ef..ddade85 100644 --- a/vec_avx_fp16_16.h +++ b/vec_avx_fp16_16.h @@ -347,27 +347,56 @@ namespace vecmathlib { intvec lsr(intvec n) const { +#ifdef __AVX2__ + // TODO: Use permute instead of shift/mask? + _mm256i mlo = _mm256_set1_epi32(U(0x0000ffff)); + _mm256i vlo = _mm256_and_si256(mlo, v); + _mm256i vhi = v; + _mm256i clo = _mm256_and_si256(mlo, n); + _mm256i chi = _mm256_and_si256(mlo, _mm256_srli_epi32(n, 16)); + _mm256i rlo = _mm256_srlv_epi32(vlo, clo); + _mm256i rhi = _mm256_andnot_si256(mlo, _mm256_srlv_epi32(vhi, chi)); + return _mm256_or_si256(rhi, rlo); +#else intvec r; for (int i=0; i<size; ++i) { r.set_elt(i, U((*this)[i]) >> U(n[i])); } return r; +#endif } intvec operator>>(intvec n) const { +#ifdef __AVX2__ + intvec_t offset = U(1) << (bits-1); + return (*this + offset).lsr(n) - offset.lsr(n); +#else intvec r; for (int i=0; i<size; ++i) { r.set_elt(i, (*this)[i] >> n[i]); } return r; +#endif } intvec operator<<(intvec n) const { +#ifdef __AVX2__ + // TODO: Use permute instead of shift/mask? + _mm256i mlo = _mm256_set1_epi32(U(0x0000ffff)); + _mm256i vlo = v; + _mm256i vhi = _mm256_andnot_si256(mlo, v; + _mm256i clo = _mm256_and_si256(mlo, n); + _mm256i chi = _mm256_and_si256(mlo, _mm256_srli_epi32(n, 16)); + _mm256i rlo = _mm256_and_si256(mlo, _mm256_sllv_epi32(vlo, clo)); + _mm256i rhi = _mm256_sllv_epi32(vhi, chi); + return _mm256_or_si256(rhi, rlo); +#else intvec r; for (int i=0; i<size; ++i) { r.set_elt(i, (*this)[i] << n[i]); } return r; +#endif } intvec& operator>>=(intvec n) { return *this=*this>>n; } intvec& operator<<=(intvec n) { return *this=*this<<n; } |