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