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