Skip to content

Commit

Permalink
Removing the check for macos
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewdavidsmith committed Apr 7, 2024
1 parent 1ae5620 commit 4412682
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/abismal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1002,10 +1002,8 @@ check_hits(const uint32_t offset, const PackedRead::const_iterator read_st,
vector<uint32_t>::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
Expand Down

0 comments on commit 4412682

Please sign in to comment.