Baremetal-NN
Baremetal-NN API documentation
Loading...
Searching...
No Matches
minimum.h
Go to the documentation of this file.
1#ifndef __NN_MINIMUM_H
2#define __NN_MINIMUM_H
3
4#include <assert.h>
5
6#include "tensor.h"
7#include "ops/minimum.h"
8
9
17void NN_minimum(Tensor *out, const Tensor *a, const Tensor *b);
18
19
20#endif // __NN_MINIMUM_H
void NN_minimum(Tensor *out, const Tensor *a, const Tensor *b)
Definition: tensor.h:36