Skip to content

Commit 4172335

Browse files
committed
Add prints
1 parent e50ac8f commit 4172335

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

source/Platform/x86/AVX2.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -134,10 +134,14 @@ class AVX2Vector {
134134

135135
#if (defined(_M_X64) || defined(__x86_64__))
136136
std::cout << "defined(_M_X64) || defined(__x86_64__) \n";
137+
#else
138+
std::cout << " NOT defined(_M_X64) || defined(__x86_64__) \n";
137139
#endif
138140

139141
#if !defined(CPU_FEATURES_ARCH_VM)
140142
std::cout << "!defined(CPU_FEATURES_ARCH_VM) \n";
143+
#else
144+
std::cout << "NOT !defined(CPU_FEATURES_ARCH_VM) \n";
141145
#endif
142146
exit (1);
143147
return _mm_extract_epi32(sum128, 0) + _mm_extract_epi32(sum128, 2);

0 commit comments

Comments
 (0)