Skip to content

Commit de9f65e

Browse files
committed
added function
1 parent 57677f2 commit de9f65e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

ydb/library/yql/utils/simd/simd_avx2.h

+4
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,10 @@ struct TSimd8 {
7878
return crc;
7979
}
8080

81+
inline void Add64(const TSimd8<T>& another) {
82+
Value = _mm256_add_epi64(Value, another.Value);
83+
}
84+
8185
inline int ToBitMask() const {
8286
return _mm256_movemask_epi8(this->Value);
8387
}

0 commit comments

Comments
 (0)