Skip to content

Commit

Permalink
[INFRA] Use proper SIMDE include directory
Browse files Browse the repository at this point in the history
  • Loading branch information
eseiler committed Oct 18, 2023
1 parent dcef639 commit 759d192
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cmake/configuration.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ endmacro ()
set (HIBF_SUBMODULES_DIR
"${HIBF_SOURCE_DIR}"
CACHE STRING "Directory containing submodules.")
file (GLOB submodules ${HIBF_SUBMODULES_DIR}/submodules/*/include ${HIBF_SUBMODULES_DIR}/submodules/simde/simde
${HIBF_SUBMODULES_DIR}/simde/simde)
file (GLOB submodules ${HIBF_SUBMODULES_DIR}/submodules/*/include ${HIBF_SUBMODULES_DIR}/submodules/simde
${HIBF_SUBMODULES_DIR}/simde)
foreach (submodule ${submodules})
if (IS_DIRECTORY ${submodule})
hibf_config_print (" …adding submodule include: ${submodule}")
Expand Down
4 changes: 2 additions & 2 deletions src/sketch/hyperloglog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
#include <hibf/contrib/aligned_allocator.hpp> // for aligned_allocator
#include <hibf/sketch/hyperloglog.hpp> // for hyperloglog

#include <x86/avx.h> // for simde__m256i
#include <x86/avx2.h> // for simde_mm256_max_epu8
#include <simde/x86/avx.h> // for simde__m256i
#include <simde/x86/avx2.h> // for simde_mm256_max_epu8

namespace seqan::hibf::sketch
{
Expand Down

0 comments on commit 759d192

Please sign in to comment.