AmpGen 2.1
Loading...
Searching...
No Matches
arm128d_types.h File Reference
#include <arm_neon.h>
#include <array>
#include <iostream>
#include "AmpGen/Complex.h"
#include <cmath>

Go to the source code of this file.

Classes

struct  AmpGen::ARM128d::real_v
 
struct  AmpGen::ARM128d::int_v
 

Namespaces

namespace  AmpGen
 
namespace  AmpGen::ARM128d
 

Macros

#define libmvec_alias(F)
 

Typedefs

using AmpGen::ARM128d::complex_v = Complex<real_v>
 

Functions

real_v AmpGen::ARM128d::operator+ (const real_v &lhs, const real_v &rhs)
 
real_v AmpGen::ARM128d::operator- (const real_v &lhs, const real_v &rhs)
 
real_v AmpGen::ARM128d::operator* (const real_v &lhs, const real_v &rhs)
 
real_v AmpGen::ARM128d::operator/ (const real_v &lhs, const real_v &rhs)
 
real_v AmpGen::ARM128d::operator- (const real_v &x)
 
int_v AmpGen::ARM128d::operator&& (const int_v &lhs, const int_v &rhs)
 
int_v AmpGen::ARM128d::operator|| (const int_v &lhs, const int_v &rhs)
 
int_v AmpGen::ARM128d::operator< (const real_v &lhs, const real_v &rhs)
 
int_v AmpGen::ARM128d::operator> (const real_v &lhs, const real_v &rhs)
 
int_v AmpGen::ARM128d::operator<= (const real_v &lhs, const real_v &rhs)
 
int_v AmpGen::ARM128d::operator>= (const real_v &lhs, const real_v &rhs)
 
int_v AmpGen::ARM128d::operator== (const real_v &lhs, const real_v &rhs)
 
real_v AmpGen::ARM128d::sqrt (const real_v &v)
 
real_v AmpGen::ARM128d::abs (const real_v &v)
 
real_v AmpGen::ARM128d::sin (const real_v &v)
 
real_v AmpGen::ARM128d::cos (const real_v &v)
 
real_v AmpGen::ARM128d::exp (const real_v &v)
 
real_v AmpGen::ARM128d::log (const real_v &v)
 
void AmpGen::ARM128d::sincos (const real_v &v, real_v &s, real_v &c)
 
std::pair< real_v, real_vAmpGen::ARM128d::sincos (const real_v &v)
 
real_v AmpGen::ARM128d::tan (const real_v &v)
 
std::array< uint64_t, real_v::size > AmpGen::ARM128d::store (const int_v &v)
 
real_v AmpGen::ARM128d::select (const int_v &mask, const real_v &a, const real_v &b)
 
real_v AmpGen::ARM128d::select (const bool &mask, const real_v &a, const real_v &b)
 
real_v AmpGen::ARM128d::sign (const real_v &v)
 
real_v AmpGen::ARM128d::atan2 (const real_v &y, const real_v &x)
 
real_v AmpGen::ARM128d::gather (const double *base_addr, const real_v &offsets)
 
real_v AmpGen::ARM128d::fmadd (const real_v &a, const real_v &b, const real_v &c)
 
real_v AmpGen::ARM128d::remainder (const real_v &a, const real_v &b)
 
real_v AmpGen::ARM128d::fmod (const real_v &a, const real_v &b)
 
std::ostream & AmpGen::ARM128d::operator<< (std::ostream &os, const real_v &obj)
 
template<typename real_v>
real_v AmpGen::ARM128d::conj (const real_v &arg)
 
complex_v AmpGen::ARM128d::select (const int_v &mask, const complex_v &a, const complex_v &b)
 
complex_v AmpGen::ARM128d::select (const int_v &mask, const real_v &a, const complex_v &b)
 
complex_v AmpGen::ARM128d::select (const int_v &mask, const complex_v &a, const real_v &b)
 
complex_v AmpGen::ARM128d::select (const bool &mask, const complex_v &a, const complex_v &b)
 

Macro Definition Documentation

◆ libmvec_alias

#define libmvec_alias ( F)
Value:
inline real_v F( const real_v& v ){ auto arr = v.to_ptr(); return real_v( std::F(arr[0]), std::F(arr[1]) ); }

Definition at line 20 of file arm128d_types.h.