Compute Library
 19.05
add.h File Reference
#include <arm_neon.h>

Go to the source code of this file.

Namespaces

 arm_compute
 Copyright (c) 2017-2018 ARM Limited.
 
 arm_compute::wrapper
 

Macros

#define VADD_IMPL(stype, vtype, prefix, postfix)
 
#define VQADD_IMPL(stype, vtype, prefix, postfix)
 

Functions

uint8x8_t vadd (const uint8x8_t &a, const uint8x8_t &b)
 
int8x8_t vadd (const int8x8_t &a, const int8x8_t &b)
 
uint16x4_t vadd (const uint16x4_t &a, const uint16x4_t &b)
 
int16x4_t vadd (const int16x4_t &a, const int16x4_t &b)
 
uint32x2_t vadd (const uint32x2_t &a, const uint32x2_t &b)
 
int32x2_t vadd (const int32x2_t &a, const int32x2_t &b)
 
uint64x1_t vadd (const uint64x1_t &a, const uint64x1_t &b)
 
int64x1_t vadd (const int64x1_t &a, const int64x1_t &b)
 
float32x2_t vadd (const float32x2_t &a, const float32x2_t &b)
 
uint8x16_t vadd (const uint8x16_t &a, const uint8x16_t &b)
 
int8x16_t vadd (const int8x16_t &a, const int8x16_t &b)
 
uint16x8_t vadd (const uint16x8_t &a, const uint16x8_t &b)
 
int16x8_t vadd (const int16x8_t &a, const int16x8_t &b)
 
uint32x4_t vadd (const uint32x4_t &a, const uint32x4_t &b)
 
int32x4_t vadd (const int32x4_t &a, const int32x4_t &b)
 
uint64x2_t vadd (const uint64x2_t &a, const uint64x2_t &b)
 
int64x2_t vadd (const int64x2_t &a, const int64x2_t &b)
 
float32x4_t vadd (const float32x4_t &a, const float32x4_t &b)
 
uint8x8_t vqadd (const uint8x8_t &a, const uint8x8_t &b)
 
int8x8_t vqadd (const int8x8_t &a, const int8x8_t &b)
 
uint16x4_t vqadd (const uint16x4_t &a, const uint16x4_t &b)
 
int16x4_t vqadd (const int16x4_t &a, const int16x4_t &b)
 
uint32x2_t vqadd (const uint32x2_t &a, const uint32x2_t &b)
 
int32x2_t vqadd (const int32x2_t &a, const int32x2_t &b)
 
uint64x1_t vqadd (const uint64x1_t &a, const uint64x1_t &b)
 
int64x1_t vqadd (const int64x1_t &a, const int64x1_t &b)
 
float32x2_t vqadd (const float32x2_t &a, const float32x2_t &b)
 
uint8x16_t vqadd (const uint8x16_t &a, const uint8x16_t &b)
 
int8x16_t vqadd (const int8x16_t &a, const int8x16_t &b)
 
uint16x8_t vqadd (const uint16x8_t &a, const uint16x8_t &b)
 
int16x8_t vqadd (const int16x8_t &a, const int16x8_t &b)
 
uint32x4_t vqadd (const uint32x4_t &a, const uint32x4_t &b)
 
int32x4_t vqadd (const int32x4_t &a, const int32x4_t &b)
 
uint64x2_t vqadd (const uint64x2_t &a, const uint64x2_t &b)
 
int64x2_t vqadd (const int64x2_t &a, const int64x2_t &b)
 
float32x4_t vqadd (const float32x4_t &a, const float32x4_t &b)
 

Macro Definition Documentation

◆ VADD_IMPL

#define VADD_IMPL (   stype,
  vtype,
  prefix,
  postfix 
)
Value:
inline vtype vadd(const vtype &a, const vtype &b) \
{ \
return prefix##_##postfix(a, b); \
}
SimpleTensor< float > b
Definition: DFT.cpp:157
float32x4_t vadd(const float32x4_t &a, const float32x4_t &b)
Definition: add.h:60

Definition at line 33 of file add.h.

◆ VQADD_IMPL

#define VQADD_IMPL (   stype,
  vtype,
  prefix,
  postfix 
)
Value:
inline vtype vqadd(const vtype &a, const vtype &b) \
{ \
return prefix##_##postfix(a, b); \
}
SimpleTensor< float > b
Definition: DFT.cpp:157
float32x4_t vqadd(const float32x4_t &a, const float32x4_t &b)
Definition: add.h:94

Definition at line 66 of file add.h.