Compute Library
 23.08
normalization_layer.cl File Reference
#include "helpers.h"
#include "tile_helpers.h"

Go to the source code of this file.

Macros

#define MUL_OP(x, y)   ((x) * (y))
 
#define ADD_OP(x, y)   ((x) + (y))
 
#define DIV_OP(x, y)   ((x) / (y))
 
#define POW_OP(x, y)   pow((x), (y))
 
#define SQCVT_SAT(a)   (a)
 

Macro Definition Documentation

◆ ADD_OP

#define ADD_OP (   x,
 
)    ((x) + (y))

Definition at line 28 of file normalization_layer.cl.

◆ DIV_OP

#define DIV_OP (   x,
 
)    ((x) / (y))

Definition at line 29 of file normalization_layer.cl.

◆ MUL_OP

#define MUL_OP (   x,
 
)    ((x) * (y))

Definition at line 27 of file normalization_layer.cl.

◆ POW_OP

#define POW_OP (   x,
 
)    pow((x), (y))

Definition at line 30 of file normalization_layer.cl.

◆ SQCVT_SAT

#define SQCVT_SAT (   a)    (a)

Definition at line 31 of file normalization_layer.cl.