mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-10-08 23:32:23 +03:00
add arm rshift128/rshift128
This commit is contained in:
committed by
Konstantinos Margaritis
parent
e1950f1ce5
commit
b0fbb39cf0
@@ -410,5 +410,17 @@ really_inline SuperVector<16> SuperVector<16>::rshift64(uint8_t const N)
|
||||
}
|
||||
#endif
|
||||
|
||||
template<>
|
||||
really_inline SuperVector<16> SuperVector<16>::lshift128(uint8_t const N)
|
||||
{
|
||||
return *this << N;
|
||||
}
|
||||
|
||||
template<>
|
||||
really_inline SuperVector<16> SuperVector<16>::rshift128(uint8_t const N)
|
||||
{
|
||||
return *this >> N;
|
||||
}
|
||||
|
||||
|
||||
#endif // SIMD_IMPL_HPP
|
||||
|
Reference in New Issue
Block a user