Skip to content

Commit

Permalink
[FIX] add missing detail/debug_stream_simd.hpp includes
Browse files Browse the repository at this point in the history
  • Loading branch information
SGSSGene committed Nov 1, 2021
1 parent 467ddb1 commit 7a7d865
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include <seqan3/core/debug_stream.hpp>
#include <seqan3/utility/simd/all.hpp>
#include <seqan3/utility/simd/detail/debug_stream_simd.hpp>

int main()
{
Expand Down
1 change: 1 addition & 0 deletions test/snippet/utility/simd/fill.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include <seqan3/core/debug_stream.hpp>
#include <seqan3/utility/simd/all.hpp>
#include <seqan3/utility/simd/detail/debug_stream_simd.hpp>

using uint16x8_t = seqan3::simd::simd_type_t<uint16_t, 8>;

Expand Down
1 change: 1 addition & 0 deletions test/snippet/utility/simd/iota.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include <seqan3/core/debug_stream.hpp>
#include <seqan3/utility/simd/all.hpp>
#include <seqan3/utility/simd/detail/debug_stream_simd.hpp>

using uint16x8_t = seqan3::simd::simd_type_t<uint16_t, 8>;

Expand Down
1 change: 1 addition & 0 deletions test/snippet/utility/simd/simd.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include <seqan3/core/debug_stream.hpp>
#include <seqan3/utility/simd/all.hpp>
#include <seqan3/utility/simd/detail/debug_stream_simd.hpp>

using uint16x8_t = seqan3::simd::simd_type_t<uint16_t, 8>;

Expand Down
1 change: 1 addition & 0 deletions test/snippet/utility/simd/simd_extract.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include <seqan3/core/debug_stream.hpp>
#include <seqan3/utility/simd/all.hpp>
#include <seqan3/utility/simd/detail/debug_stream_simd.hpp>

using int16x8_t = seqan3::simd::simd_type_t<int16_t, 8>;

Expand Down
1 change: 1 addition & 0 deletions test/snippet/utility/simd/simd_load.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include <seqan3/core/debug_stream.hpp>
#include <seqan3/utility/simd/all.hpp>
#include <seqan3/utility/simd/detail/debug_stream_simd.hpp>

using uint16x8_t = seqan3::simd::simd_type_t<uint16_t, 8>;

Expand Down
1 change: 1 addition & 0 deletions test/snippet/utility/simd/simd_transpose.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

#include <seqan3/core/debug_stream.hpp>
#include <seqan3/utility/simd/all.hpp>
#include <seqan3/utility/simd/detail/debug_stream_simd.hpp>

using uint8x4_t = seqan3::simd::simd_type_t<uint8_t, 4>;

Expand Down
1 change: 1 addition & 0 deletions test/snippet/utility/simd/simd_upcast.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include <seqan3/core/debug_stream.hpp>
#include <seqan3/utility/simd/all.hpp>
#include <seqan3/utility/simd/detail/debug_stream_simd.hpp>

using int16x8_t = seqan3::simd::simd_type_t<int16_t, 8>;
using int32x4_t = seqan3::simd::simd_type_t<int32_t, 4>;
Expand Down
1 change: 1 addition & 0 deletions test/snippet/utility/simd/views/iota_simd.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include <seqan3/core/debug_stream.hpp>
#include <seqan3/utility/simd/all.hpp>
#include <seqan3/utility/simd/detail/debug_stream_simd.hpp>

// The simd type with 8 unsigned shorts.
using uint16x8_t = seqan3::simd_type_t<uint16_t, 8>;
Expand Down
1 change: 1 addition & 0 deletions test/snippet/utility/simd/views/iota_simd_transform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

#include <seqan3/core/debug_stream.hpp>
#include <seqan3/utility/simd/all.hpp>
#include <seqan3/utility/simd/detail/debug_stream_simd.hpp>

// The simd type with 8 unsigned shorts.
using uint16x8_t = seqan3::simd_type_t<uint16_t, 8>;
Expand Down
1 change: 1 addition & 0 deletions test/snippet/utility/simd/views/to_simd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#include <seqan3/alphabet/nucleotide/dna4.hpp>
#include <seqan3/core/debug_stream.hpp>
#include <seqan3/utility/simd/all.hpp>
#include <seqan3/utility/simd/detail/debug_stream_simd.hpp>

using uint16x8_t = seqan3::simd_type_t<uint16_t, 8>;

Expand Down

0 comments on commit 7a7d865

Please sign in to comment.