Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/castano/icbc
Browse files Browse the repository at this point in the history
# Conflicts:
#	doc/results.txt
  • Loading branch information
castano committed Aug 24, 2020
2 parents f801b1b + b0c83d1 commit b31f4ed
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion icbc.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ namespace icbc {
#define ICBC_X86 1
#endif

#if defined(__x86_64__) || defined(_M_X64)
#define ICBC_X64 1
#endif

#if (defined(__arm__) || defined(_M_ARM))
#define ICBC_ARM 1
#endif
Expand All @@ -76,7 +80,7 @@ namespace icbc {
#define ICBC_SIMD ICBC_AVX1
#elif __SSE4_1__
#define ICBC_SIMD ICBC_SSE41
#elif __SSE2__
#elif __SSE2__ || ICBC_X64
#define ICBC_SIMD ICBC_SSE2
#else
#define ICBC_SIMD ICBC_SCALAR
Expand Down

0 comments on commit b31f4ed

Please sign in to comment.