check hardware support for avx2/512

This commit is contained in:
Saurabh
2021-06-26 10:20:55 -07:00
committed by Heng Li
parent 448341c96c
commit 6da640e551
2 changed files with 2 additions and 2 deletions

View File

@@ -364,7 +364,7 @@ static void mm_align_pair(void *km, const mm_mapopt_t *opt, int qlen, const uint
else if (opt->q == opt->q2 && opt->e == opt->e2)
ksw_extz2_sse(km, qlen, qseq, tlen, tseq, 5, mat, opt->q, opt->e, w, zdrop, end_bonus, flag, ez);
else{
#ifdef ALIGN_AVX
#ifdef ALIGN_AVX && (__AVX512BW__ || __AVX2__)
#ifdef __AVX512BW__
ksw_extd2_avx512(km, qlen, qseq, tlen, tseq, 5, mat, opt->q, opt->e, opt->q2, opt->e2, w, zdrop, end_bonus, flag, ez);
#elif __AVX2__