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