Baremetal-NN
Baremetal-NN API documentation
Loading...
Searching...
No Matches
rms_norm.h
Go to the documentation of this file.
1#ifndef __NN_RMS_NORM_H
2#define __NN_RMS_NORM_H
3
4#include <assert.h>
5#include <math.h>
6
7#include "tensor.h"
8#include "ops/rms_norm.h"
9
10
17void NN_rms_norm(Tensor *y, const Tensor *x, const Tensor *w, float eps);
18
19
20#endif // __NN_RMS_NORM_H
void NN_rms_norm(Tensor *y, const Tensor *x, const Tensor *w, float eps)
Definition: tensor.h:36