Skip to content

Commit 44d173e

Browse files
Add missing includes / forward declaration
1 parent 0763970 commit 44d173e

11 files changed

+66
-44
lines changed

include/xsimd/arch/generic/xsimd_generic_math.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
#ifndef XSIMD_GENERIC_MATH_HPP
1313
#define XSIMD_GENERIC_MATH_HPP
1414

15-
#include <type_traits>
16-
1715
#include "../xsimd_scalar.hpp"
1816
#include "./xsimd_generic_details.hpp"
1917
#include "./xsimd_generic_trigo.hpp"
2018

19+
#include <type_traits>
20+
2121
namespace xsimd
2222
{
2323

include/xsimd/arch/xsimd_neon.hpp

+3
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,9 @@ inline float32x4_t vreinterpretq_f32_f32(float32x4_t arg) { return arg; }
8686

8787
namespace xsimd
8888
{
89+
template <class batch_type, bool... Values>
90+
struct batch_bool_constant;
91+
8992
namespace kernel
9093
{
9194
using namespace types;

include/xsimd/arch/xsimd_neon64.hpp

+3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121

2222
namespace xsimd
2323
{
24+
template <class batch_type, bool... Values>
25+
struct batch_bool_constant;
26+
2427
namespace kernel
2528
{
2629
using namespace types;

include/xsimd/arch/xsimd_scalar.hpp

+8
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,16 @@
1717
#include <limits>
1818
#include <type_traits>
1919

20+
#ifdef XSIMD_ENABLE_XTL_COMPLEX
21+
#include "xtl/xcomplex.hpp"
22+
#endif
23+
2024
namespace xsimd
2125
{
26+
template <class T, class A>
27+
class batch;
28+
template <class T, class A>
29+
class batch_bool;
2230

2331
using std::abs;
2432

include/xsimd/arch/xsimd_sse2.hpp

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020

2121
namespace xsimd
2222
{
23+
template <class batch_type, bool... Values>
24+
struct batch_bool_constant;
2325

2426
namespace kernel
2527
{

include/xsimd/arch/xsimd_ssse3.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
#include <type_traits>
1717

1818
#include "../types/xsimd_ssse3_register.hpp"
19+
#include "../types/xsimd_utils.hpp"
1920

2021
namespace xsimd
2122
{

include/xsimd/types/xsimd_avx512cd_register.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#ifndef XSIMD_AVX512CD_REGISTER_HPP
1313
#define XSIMD_AVX512CD_REGISTER_HPP
1414

15-
#include "./xsimd_avx512cd_register.hpp"
15+
#include "./xsimd_avx512f_register.hpp"
1616

1717
namespace xsimd
1818
{
@@ -24,7 +24,7 @@ namespace xsimd
2424
*/
2525
struct avx512cd : avx512f
2626
{
27-
static constexpr bool supported() { return XSIMD_WITH_AVX512BW; }
27+
static constexpr bool supported() { return XSIMD_WITH_AVX512CD; }
2828
static constexpr bool available() { return true; }
2929
static constexpr unsigned version() { return generic::version(3, 2, 0); }
3030
static constexpr char const* name() { return "avx512cd"; }

include/xsimd/types/xsimd_batch.hpp

-39
Original file line numberDiff line numberDiff line change
@@ -373,45 +373,6 @@ namespace xsimd
373373
template <class T, class A>
374374
constexpr std::size_t batch<std::complex<T>, A>::size;
375375

376-
/*******************
377-
* real_batch_type *
378-
*******************/
379-
380-
template <class B>
381-
struct real_batch_type
382-
{
383-
using type = B;
384-
};
385-
386-
template <class T, class A>
387-
struct real_batch_type<batch<std::complex<T>, A>>
388-
{
389-
using type = batch<T, A>;
390-
};
391-
392-
template <class B>
393-
using real_batch_type_t = typename real_batch_type<B>::type;
394-
395-
/**********************
396-
* complex_batch_type *
397-
**********************/
398-
399-
template <class B>
400-
struct complex_batch_type
401-
{
402-
using real_value_type = typename B::value_type;
403-
using arch_type = typename B::arch_type;
404-
using type = batch<std::complex<real_value_type>, arch_type>;
405-
};
406-
407-
template <class T, class A>
408-
struct complex_batch_type<batch<std::complex<T>, A>>
409-
{
410-
using type = batch<std::complex<T>, A>;
411-
};
412-
413-
template <class B>
414-
using complex_batch_type_t = typename complex_batch_type<B>::type;
415376
}
416377

417378
#include "../arch/xsimd_isa.hpp"

include/xsimd/types/xsimd_generic_arch.hpp

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
#ifndef XSIMD_GENERIC_ARCH_HPP
1313
#define XSIMD_GENERIC_ARCH_HPP
1414

15+
#include "../config/xsimd_config.hpp"
16+
1517
/**
1618
* @defgroup arch
1719
* */

include/xsimd/types/xsimd_utils.hpp

+40
Original file line numberDiff line numberDiff line change
@@ -425,6 +425,46 @@ namespace xsimd
425425
};
426426
#endif
427427
}
428+
429+
/*******************
430+
* real_batch_type *
431+
*******************/
432+
433+
template <class B>
434+
struct real_batch_type
435+
{
436+
using type = B;
437+
};
438+
439+
template <class T, class A>
440+
struct real_batch_type<batch<std::complex<T>, A>>
441+
{
442+
using type = batch<T, A>;
443+
};
444+
445+
template <class B>
446+
using real_batch_type_t = typename real_batch_type<B>::type;
447+
448+
/**********************
449+
* complex_batch_type *
450+
**********************/
451+
452+
template <class B>
453+
struct complex_batch_type
454+
{
455+
using real_value_type = typename B::value_type;
456+
using arch_type = typename B::arch_type;
457+
using type = batch<std::complex<real_value_type>, arch_type>;
458+
};
459+
460+
template <class T, class A>
461+
struct complex_batch_type<batch<std::complex<T>, A>>
462+
{
463+
using type = batch<std::complex<T>, A>;
464+
};
465+
466+
template <class B>
467+
using complex_batch_type_t = typename complex_batch_type<B>::type;
428468
}
429469

430470
#endif

include/xsimd/xsimd.hpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,10 @@
2020

2121
#include "arch/xsimd_scalar.hpp"
2222
#include "memory/xsimd_aligned_allocator.hpp"
23-
#include "types/xsimd_api.hpp"
2423
#include "types/xsimd_batch.hpp"
2524
#include "types/xsimd_batch_constant.hpp"
2625
#include "types/xsimd_traits.hpp"
26+
27+
// This include must come last
28+
#include "types/xsimd_api.hpp"
2729
#endif

0 commit comments

Comments
 (0)