#include "arm_compute/core/NEON/NEMath.h"
#include <arm_neon.h>
Go to the source code of this file.
|
#define | VDIV_IMPL(stype, vtype, mul_prefix, inv_prefix, postfix) |
|
|
float32x2_t | vdiv (const float32x2_t &a, const float32x2_t &b) |
|
float32x4_t | vdiv (const float32x4_t &a, const float32x4_t &b) |
|
◆ 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)); \
}
float32x4_t vdiv(const float32x4_t &a, const float32x4_t &b)
Definition at line 53 of file div.h.