Baremetal-NN
Baremetal-NN API documentation
Loading...
Searching...
No Matches
conv2d.h
Go to the documentation of this file.
1#ifndef __NN_conv2d_H
2#define __NN_conv2d_H
3
4#include <assert.h>
5#include <string.h>
6
7#include "tensor.h"
8
15void NN_nchw_to_nhwc(Tensor *out, const Tensor *in);
16
23void NN_nhwc_to_nchw(Tensor *out, const Tensor *in);
24
38 Tensor *out, const Tensor *in,
39 const Tensor *weight, const Tensor *bias,
40 const size_t *stride, const size_t *padding, const size_t *dilation, size_t groups
41 );
42
43
44#endif // __NN_conv2d_H
void NN_conv2d(Tensor *out, const Tensor *in, const Tensor *weight, const Tensor *bias, const size_t *stride, const size_t *padding, const size_t *dilation, size_t groups)
void NN_nhwc_to_nchw(Tensor *out, const Tensor *in)
void NN_nchw_to_nhwc(Tensor *out, const Tensor *in)
Definition: tensor.h:36