Baremetal-NN
Baremetal-NN API documentation
Loading...
Searching...
No Matches
copy.h
Go to the documentation of this file.
1#ifndef __NN_COPY_H
2#define __NN_COPY_H
3
4#include <assert.h>
5#include <string.h>
6
7#include "tensor.h"
8
9
18void NN_copy(Tensor *dst, const Tensor *src);
19
20
21#endif // __NN_COPY_H
void NN_copy(Tensor *dst, const Tensor *src)
Definition: tensor.h:36