17#ifndef LUCI_INTERPRETER_PAL_DEPTHTOSPACE_H
18#define LUCI_INTERPRETER_PAL_DEPTHTOSPACE_H
20#include <tensorflow/lite/kernels/internal/reference/depth_to_space.h>
25static inline void DepthToSpace(
const tflite::DepthToSpaceParams &op_params,
26 const tflite::RuntimeShape &unextended_input_shape,
28 const tflite::RuntimeShape &unextended_output_shape, T *output_data)
30 tflite::reference_ops::DepthToSpace(op_params, unextended_input_shape, input_data,
31 unextended_output_shape, output_data);
void DepthToSpace(const Shape &unextended_input_shape, const T *input_data, const Shape &unextended_output_shape, T *output_data, int32_t block_size)