Baremetal-NN
Baremetal-NN API documentation
Loading...
Searching...
No Matches
relu.h
Go to the documentation of this file.
1#ifndef __NN_RELU_H
2#define __NN_RELU_H
3
4#include <assert.h>
5
6#include "tensor.h"
7#include "ops/maximum1.h"
8
9
18void NN_relu(Tensor *y, const Tensor *x);
19
21
22#endif // __NN_RELU_H
void NN_relu_inplace(Tensor *x)
void NN_relu(Tensor *y, const Tensor *x)
Definition: tensor.h:36