Skip to content

Commit fc59219

Browse files
committed
Remove debugging log
1 parent 11ed3c2 commit fc59219

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

source/Platform/x86/AVX2.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,6 @@ class AVX2Vector {
115115
inline uint16_t sum() const {
116116
__m256i sum256 = _mm256_sad_epu8(vector, _mm256_setzero_si256());
117117
__m128i sum128 = _mm_add_epi64(_mm256_extractf128_si256(sum256, 1), _mm256_castsi256_si128(sum256));
118-
std::cout << "NOT CPU_FEATURES_ARCH_X86_64 \n";
119-
120118
return _mm_extract_epi32(sum128, 0) + _mm_extract_epi32(sum128, 2);
121119
}
122120
#endif

0 commit comments

Comments
 (0)