#include "tensorflow/lite/kernels/internal/reference/broadcast_to.h"
#include <string.h>
#include <cstdint>
#include <memory>
#include "tensorflow/lite/core/c/common.h"
#include "tensorflow/lite/kernels/internal/tensor.h"
#include "tensorflow/lite/kernels/kernel_util.h"
namespace tflite {
namespace ops {
namespace builtin {
namespace broadcastto {
constexpr int kInputTensor = …;
constexpr int kShapeTensor = …;
constexpr int kOutputTensor = …;
constexpr int kMaxDims = …;
struct BroadcastToContext { … };
TfLiteStatus ResizeOutputTensor(TfLiteContext* context,
BroadcastToContext* op_context) { … }
TfLiteStatus Prepare(TfLiteContext* context, TfLiteNode* node) { … }
TfLiteStatus Eval(TfLiteContext* context, TfLiteNode* node) { … }
}
TfLiteRegistration* Register_BROADCAST_TO() { … }
}
}
}