Baremetal-NN
Baremetal-NN API documentation
Loading...
Searching...
No Matches
max_pool2d.h
Go to the documentation of this file.
1#ifndef __NN_MAX_POOL2D_H
2#define __NN_MAX_POOL2D_H
3
4#include <assert.h>
5
6#include "tensor.h"
7#include "max.h"
8
9
17void NN_max_pool2d(Tensor *out, const Tensor *in, const size_t *kernel_size);
18
19
20#endif // __NN_MAX_POOL2D_H
void NN_max_pool2d(Tensor *out, const Tensor *in, const size_t *kernel_size)
Definition: tensor.h:36