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 float *input_data, const Dims< 4 > &input_dims, float beta, float *output_data, const Dims< 4 > &output_dims)