Baremetal-NN
Baremetal-NN API documentation
Loading...
Searching...
No Matches
relu6.h
Go to the documentation of this file.
1#ifndef __NN_RELU6_H
2#define __NN_RELU6_H
3
4#include <assert.h>
5
6#include "tensor.h"
7#include "ops/maximum1.h"
8#include "ops/minimum1.h"
9
10
19void NN_relu6(Tensor *y, const Tensor *x);
20
22
23
24#endif // __NN_RELU6_H
void NN_relu6_inplace(Tensor *x)
void NN_relu6(Tensor *y, const Tensor *x)
Definition: tensor.h:36