Compute Library
 19.05
div.h File Reference
#include "arm_compute/core/NEON/NEMath.h"
#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 VDIV_IMPL(stype, vtype, mul_prefix, inv_prefix, postfix)
 

Functions

float32x2_t vdiv (const float32x2_t &a, const float32x2_t &b)
 
float32x4_t vdiv (const float32x4_t &a, const float32x4_t &b)
 

Macro Definition Documentation

◆ VDIV_IMPL

#define VDIV_IMPL (   stype,
  vtype,
  mul_prefix,
  inv_prefix,
  postfix 
)
Value:
inline vtype vdiv(const vtype &a, const vtype &b) \
{ \
return mul_prefix##_##postfix(a, inv_prefix##_##postfix(b)); \
}
SimpleTensor< float > b
Definition: DFT.cpp:157
float32x4_t vdiv(const float32x4_t &a, const float32x4_t &b)
Definition: div.h:63

Definition at line 53 of file div.h.