From 4412682e4e9458999412b5cda573f370ba2a7587 Mon Sep 17 00:00:00 2001 From: Andrew D Smith Date: Sat, 6 Apr 2024 19:43:44 -0700 Subject: [PATCH] Removing the check for macos --- src/abismal.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/abismal.cpp b/src/abismal.cpp index 0fed5f2..59e1479 100644 --- a/src/abismal.cpp +++ b/src/abismal.cpp @@ -1002,10 +1002,8 @@ check_hits(const uint32_t offset, const PackedRead::const_iterator read_st, vector::const_iterator start_idx, result_type &res) { for (; start_idx != end_idx && !res.sure_ambig; ++start_idx) { // GS: adds the next candidate to L1d cache while current is compared -#ifndef __arm64__ _mm_prefetch(&(*(genome_st + ((*(start_idx + 10) - offset) >> 4))), _MM_HINT_T0); -#endif const uint32_t the_pos = *start_idx - offset; /* GS: the_pos & 15u tells if the position is a multiple of 16, in * which case it is aligned with the genome. Otherwise we need to