From 3e16e4e39d24b8d9db89233df0ac093932a07386 Mon Sep 17 00:00:00 2001 From: mbrcic Date: Tue, 21 Apr 2020 01:36:19 +0200 Subject: [PATCH] Added documentation entry for added functionality, simde and no_simd. --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index addeb2c..a62d189 100644 --- a/README.md +++ b/README.md @@ -82,6 +82,10 @@ to disable SSE4 code, which will make minimap2 slightly slower. Minimap2 also works with ARM CPUs supporting the NEON instruction sets. To compile for 32 bit ARM architectures (such as ARMv7), use `make arm_neon=1`. To compile for for 64 bit ARM architectures (such as ARMv8), use `make arm_neon=1 aarch64=1`. +Minimap2 can use [SIMD Everywhere (SIMDe)](https://github.com/nemequ/simde) library for porting implementation +to the different SIMD instruction sets. To compile using SIMDe, use `make simde=1`. To compile for ARM CPUs, add `simde=1` to the commands given above. +SIMDe also enables non-SIMD implementation using `make no_simd=1`. + ### General usage Without any options, minimap2 takes a reference database and a query sequence