blob: b5af8da42d6e459657ee98d645b187623f9bb633 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--- src/sintax.cc.orig 2025-10-05 12:34:38 UTC
+++ src/sintax.cc
@@ -295,9 +295,14 @@ auto sintax_search_topscores(struct searchinfo_s * sea
if (bitmap != nullptr)
{
#ifdef __x86_64__
+ // Not sure how to enable ssse3 without enabling other
+ // non-portable features.
+ // This code is only used rarely, so disable ssse3 for now.
+ // It won't affect performance much on the whole.
+ // https://github.com/torognes/vsearch/pull/497
if (ssse3_present != 0)
{
- increment_counters_from_bitmap_ssse3(searchinfo->kmers,
+ increment_counters_from_bitmap_sse2(searchinfo->kmers,
bitmap, indexed_count);
}
else
|