Baremetal-NN
Baremetal-NN API documentation
Loading...
Searching...
No Matches
neg.h
Go to the documentation of this file.
1#ifndef __NN_NEG_H
2#define __NN_NEG_H
3
4#include <assert.h>
5
6#include "tensor.h"
7#include "ops/neg.h"
8
9
18void NN_neg(Tensor *out, const Tensor *input);
19
20void NN_neg_inplace(Tensor *tensor);
21
22
23#endif // __NN_NEG_H
void NN_neg(Tensor *out, const Tensor *input)
void NN_neg_inplace(Tensor *tensor)
Definition: tensor.h:36