Namespaces | |
namespace | inner |
Data Structures | |
struct | vector_traits< std::complex< float >, arch, typename std::enable_if< std::is_base_of< Helium, arch >::value >::type > |
Vector datatype for Helium. More... | |
struct | vload1_gen_stride< std::complex< float >, 0, 1, 2, 3 > |
Load with generalized stride specialized for <0,1,2,3> More... | |
struct | vstore1_gen_stride< std::complex< float32_t >, 0, 1, 2, 3 > |
Generalized store with stride (Specialized for <0,1,2,3>) More... | |
struct vector_traits< std::complex< float >, arch, typename std::enable_if< std::is_base_of< Helium, arch >::value >::type > |
Vector datatype for Helium.
arch | Current architecture |
Public Types | |
typedef std::complex< float > | type |
Scalar datatype. | |
typedef std::complex< float > | storage_type |
Storage datatype. | |
typedef ComplexVector< float32x4_t > | vector |
Vector datatype. | |
typedef HalfComplexVector< float32x4_t > | half_vector |
Half vector datatype. | |
typedef float32x4_t | real_vector |
Real vector datatype. | |
typedef ComplexVector< float32x4_t > | temp_accumulator |
Temp accumulator datatype (must be reduced to final scalar datatype) | |
typedef bool | predicate_t |
Predicate datatype (not used) | |
Static Public Member Functions | |
static ComplexVector< float32x4_t > | temp_acc_zero () |
Temp accumulator initialized to 0. | |
Static Public Attributes | |
static constexpr bool | has_vector = true |
Has vector instruction. | |
static constexpr bool | is_float = true |
Is float. | |
static constexpr bool | is_fixed = false |
Is not fixed point. | |
static constexpr bool | has_predicate = false |
Has predicated loops. | |
static constexpr int | nb_lanes = 4 |
Number of lanes (each lane being two floats) | |
static constexpr bool | support_mixed = true |
If support mixed arithmetic. | |
|
inlinestatic |
Temp accumulator initialized to 0.
struct inner::vload1_gen_stride< std::complex< float >, 0, 1, 2, 3 > |
Load with generalized stride specialized for <0,1,2,3>
Static Public Member Functions | |
static ComplexVector< float32x4_t > | run (const std::complex< float32_t > *p) |
Load with generalized stride. | |
|
inlinestatic |
Load with generalized stride.
[in] | p | Load address |
struct inner::vstore1_gen_stride< std::complex< float32_t >, 0, 1, 2, 3 > |
Generalized store with stride (Specialized for <0,1,2,3>)
Static Public Member Functions | |
static void | run (std::complex< float32_t > *p, const ComplexVector< float32x4_t > &val) |
Scatter store. | |
|
inlinestatic |
Scatter store.
p | Store address | |
[in] | val | Value to store |