Baremetal-NN
Baremetal-NN API documentation
Loading...
Searching...
No Matches
addmm.h
Go to the documentation of this file.
1#ifndef __NN_ADDMM_H
2#define __NN_ADDMM_H
3
4#include <stddef.h>
5#include <stdint.h>
6
7#include "float16.h"
8#include "ops/dot.h"
9
10
11void NN_addmm_t_f32(size_t m, size_t n, size_t k, float *y, const float *x1, const float *x2, const float *x3);
12
13
14#endif // __NN_ADDMM_H
void NN_addmm_t_f32(size_t m, size_t n, size_t k, float *y, const float *x1, const float *x2, const float *x3)