Baremetal-NN
Baremetal-NN API documentation
Loading...
Searching...
No Matches
div.h
Go to the documentation of this file.
1#ifndef __NN_DIV_H
2#define __NN_DIV_H
3
4#include <assert.h>
5#include <float.h>
6
7#include "tensor.h"
8#include "ops/div.h"
9
10
20void NN_div(Tensor *out, const Tensor *a, const Tensor *b);
21
22
23#endif // __NN_DIV_H
void NN_div(Tensor *out, const Tensor *a, const Tensor *b)
Definition: tensor.h:36