Baremetal-NN
Baremetal-NN API documentation
Loading...
Searching...
No Matches
silu.h
Go to the documentation of this file.
1#ifndef __NN_SILU_H
2#define __NN_SILU_H
3
4#include <assert.h>
5#include <math.h>
6
7#include "tensor.h"
8#include "ops/maximum1.h"
9
10
21void NN_silu(Tensor *y, const Tensor *x);
22
24
25#endif // __NN_SILU_H
void NN_silu_inplace(Tensor *x)
void NN_silu(Tensor *y, const Tensor *x)
Definition: tensor.h:36