17#ifndef LUCI_INTERPRETER_PAL_ARGMAX_H
18#define LUCI_INTERPRETER_PAL_ARGMAX_H
20#include <tensorflow/lite/kernels/internal/reference/arg_min_max.h>
24template <
typename T1,
typename T2,
typename T3>
25static inline void ArgMinMax(
const tflite::RuntimeShape &input1_shape,
const T1 *input1_data,
26 const T2 *axis,
const tflite::RuntimeShape &
output_shape,
27 T3 *output_data,
const std::greater<T1> cmp)
29 tflite::reference_ops::ArgMinMax(input1_shape, input1_data, axis,
output_shape, output_data, cmp);
const luci_interpreter::RuntimeShape output_shape
void ArgMinMax(const Shape &input1_shape, const T1 *input1_data, const Shape &output_shape, T2 *output_data, int32_t axis, const Cmp &cmp)