18#ifndef LUCI_INTERPRETER_PAL_SOFTMAX_H
19#define LUCI_INTERPRETER_PAL_SOFTMAX_H
21#include "PALSoftmaxCommon.h"
26inline void Softmax(
const SoftmaxParams ¶ms,
const int8_t *input_data, int8_t *output_data)
28 assert(
false &&
"Not supported now");
31inline void Softmax(
const SoftmaxParams ¶ms,
const int8_t *input_data, int16_t *output_data)
33 assert(
false &&
"Not supported now");
36inline void Softmax(
const SoftmaxParams ¶ms,
const int16_t *input_data, int16_t *output_data)
38 assert(
false &&
"Not supported now");
void Softmax(const SoftmaxParams ¶ms, const Shape &input_shape, const float *input_data, const Shape &output_shape, float *output_data)