#include "tensorflow/lite/kernels/internal/reference/floor.h"
#include "tensorflow/lite/core/c/common.h"
#include "tensorflow/lite/kernels/internal/optimized/optimized_ops.h"
#include "tensorflow/lite/kernels/internal/tensor.h"
#include "tensorflow/lite/kernels/internal/tensor_ctypes.h"
#include "tensorflow/lite/kernels/kernel_util.h"
namespace tflite {
namespace ops {
namespace builtin {
namespace floor {
constexpr int kInputTensor = …;
constexpr int kOutputTensor = …;
enum KernelType { … };
TfLiteStatus Prepare(TfLiteContext* context, TfLiteNode* node) { … }
template <KernelType type>
TfLiteStatus Eval(TfLiteContext* context, TfLiteNode* node) { … }
}
TfLiteRegistration* Register_FLOOR_REF() { … }
TfLiteRegistration* Register_FLOOR() { … }
}
}
}