Baremetal-NN
Baremetal-NN API documentation
Loading...
Searching...
No Matches
batch_norm2d.h
Go to the documentation of this file.
1#ifndef __NN_BATCH_NORM2D_H
2#define __NN_BATCH_NORM2D_H
3
4#include <assert.h>
5#include <math.h>
6
7#include "tensor.h"
8
9
22 Tensor *out, const Tensor *in,
23 const Tensor *weight, const Tensor *bias,
24 float eps, const Tensor *running_mean, const Tensor *running_va
25 );
26
27
28#endif // __NN_BATCH_NORM2D_H
void NN_batch_norm2d(Tensor *out, const Tensor *in, const Tensor *weight, const Tensor *bias, float eps, const Tensor *running_mean, const Tensor *running_va)
Definition: tensor.h:36