mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-09-29 19:24:25 +03:00
Supervector test fixes
This commit is contained in:
committed by
Konstantinos Margaritis
parent
ae6bc52076
commit
6f88ecac44
@@ -890,7 +890,7 @@ template <>
|
||||
really_inline typename SuperVector<64>::movemask_type SuperVector<64>::movemask(void)const
|
||||
{
|
||||
m512_t msb = SuperVector<64>::dup_u8(0x80);
|
||||
m512_t mask = msb | *this;
|
||||
m512_t mask = msb & *this;
|
||||
return _mm512_cmpeq_epi8_mask(mask.u.v512[0],msb.u.v512[0]);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user