Baremetal-NN
Baremetal-NN API documentation
Loading...
Searching...
No Matches
mm.h
Go to the documentation of this file.
1#ifndef __NN_MM_H
2#define __NN_MM_H
3
4#include <assert.h>
5
6#include "tensor.h"
7#include "ops/dot.h"
8#include "ops/mm.h"
9
10
22void NN_mm(Tensor *out, const Tensor *a, const Tensor *b);
23
35void NN_mm_t(Tensor *out, const Tensor *a, const Tensor *b);
36
37
38#endif // __NN_MM_H
void NN_mm(Tensor *out, const Tensor *a, const Tensor *b)
void NN_mm_t(Tensor *out, const Tensor *a, const Tensor *b)
Definition: tensor.h:36